Files
devops-directive-docker-course/05-example-web-application/api-golang/test/example_test.go
2023-02-01 16:15:05 -05:00

11 lines
135 B
Go

package test
import "testing"
func TestOneEqualsOne(t *testing.T) {
val := 1
if val != 1 {
t.Errorf("1 != %d; want 1", val)
}
}