learndrone/main_test.go
Pedro Pérez cf4ee051bb
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
add test
2025-05-30 01:05:36 +02:00

23 lines
322 B
Go

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)
}
}
}