Sha256: 496418a5be48c39d00f46c05b1e05436513cc063a2df4bd6f47f8791d45b8b1d
Contents?: true
Size: 935 Bytes
Versions: 51
Compression:
Stored size: 935 Bytes
Contents
package transpose import ( "reflect" "testing" ) func TestTranspose(t *testing.T) { for _, test := range testCases { actual := Transpose(test.input) if !reflect.DeepEqual(actual, test.expected) { // let's make the error more specific and find the row it's on min := min(len(test.expected), len(actual)) for i := 0; i < min; i++ { if test.expected[i] != actual[i] { t.Fatalf("\n\tTranspose(%q): %s\n\n\tExpected: %q\n\tGot: %q\n\n\tRow %d Expected: %q Got: %q", test.input, test.description, test.expected, actual, i, test.expected[i], actual[i]) } } } } } // helper function // https://stackoverflow.com/questions/27516387/what-is-the-correct-way-to-find-the-min-between-two-integers-in-go func min(a, b int) int { if a < b { return a } return b } func BenchmarkTranspose(b *testing.B) { for _, test := range testCases { for i := 0; i < b.N; i++ { Transpose(test.input) } } }
Version data entries
51 entries across 51 versions & 1 rubygems