12-測試
package math
import "testing"
func TestAverage(t *testing.T) {
var v float64
v = Average([]float64{1,2})
if v != 1.5 {
t.Error("Expected 1.5, got ", v)
}
}go test$ go test
PASS
ok golang-book/chapter11/math 0.032s問題
Last updated