learn-go-with-tests/integers/adder_test.go

22 lines
261 B
Go
Raw Permalink Normal View History

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