Slide 5
Slide 5 text
Red: 失敗するテストを書く
まず、期待する動作を定義するテストを書きます。
// calculator_test.go
package calculator
import "testing"
func TestAdd(t *testing.T) {
result := Add(2, 3)
expected := 5
if result != expected {
t.Errorf("expected '%d', but got '%d'", expected, result)
}
}
5