@@ -0,0 +1,22 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"testing"
|
||||
)
|
||||
|
||||
func Test_sum(t *testing.T) {
|
||||
tests := []struct {
|
||||
a, b int
|
||||
want int
|
||||
}{
|
||||
{1, 2, 3},
|
||||
{-1, 1, 0},
|
||||
{0, 0, 0},
|
||||
}
|
||||
|
||||
for _, test := range tests {
|
||||
if got := sum(test.a, test.b); got != test.want {
|
||||
t.Errorf("sum(%d, %d) = %d, want %d", test.a, test.b, got, test.want)
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user