bazel-lib/lib/tests/transitions/simple_test.go

11 lines
151 B
Go

package simple_test
import "testing"
func TestAdd(t *testing.T) {
result := 1 + 2
if result != 3 {
t.Errorf("got %q, wanted %q", result, 3)
}
}