You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
edit-distance/helpers_test.go

10 lines
177 B

package editdistance
import "testing"
func TestMin(t *testing.T) {
mins := min(1, 2, 3, 4, 5)
if mins != 1 {
t.Errorf("Min was incorrect, got %d, want %d.", mins, 1)
}
}