Sign in
◑
Theme
pigweed
/
third_party
/
github
/
aspect-build
/
bazel-lib
/
3c121a9cd9c665f3aca903c473ec91dc8af68721
/
.
/
lib
/
tests
/
transitions
/
simple_test.go
blob: 4b1bee0ab2587150586af12eeb92df85d3e45f08 [
file
]
package simple_test
import "testing"
func TestAdd(t *testing.T) {
result := 1 + 2
if result != 3 {
t.Errorf("got %q, wanted %q", result, 3)
}
}