11 lines
177 B
Go
11 lines
177 B
Go
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)
|
|
}
|
|
}
|