go-by-test/integers/adder_test.go

13 lines
177 B
Go
Raw Normal View History

2024-09-10 11:04:47 +00:00
package integers
import "testing"
func TestAdder(t *testing.T) {
sum := Add(2, 2)
expected := 4
if sum != expected {
t.Errorf("got %d, expected %d", sum, expected)
}
}