aboutsummaryrefslogtreecommitdiffstats
path: root/golang/gen/restapi/test.go
blob: f45b33c5e54aed24f364ce558e272b17b6879000 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

package restapi

import (
  "testing"
  "github.com/stretchr/testify/assert"
)

func TestSomething(t *testing.T) {

  assert.True(t, true, "True is true!")

}