go-by-test/integers/adder_test.go

22 lines
262 B
Go

package integers
import (
"fmt"
"testing"
)
func ExampleAdd() {
sum := Add(1, 5)
fmt.Println(sum)
// Output: 6
}
func TestAdder(t *testing.T) {
sum := Add(2, 2)
expected := 4
if sum != expected {
t.Errorf("got %d, expected %d", sum, expected)
}
}