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)
}
}