Lines Matching full:testcase
47 for _, testCase := range lastUniqueElementsTestCases {
48 out := lastUniqueElements(testCase.in)
49 if !reflect.DeepEqual(out, testCase.out) {
51 t.Errorf(" input: %#v", testCase.in)
52 t.Errorf(" expected: %#v", testCase.out)
144 for _, testCase := range splitListForSizeTestCases {
145 out, _ := splitListForSize(testCase.in, testCase.size)
146 if !reflect.DeepEqual(out, testCase.out) {
148 t.Errorf(" input: %#v", testCase.in)
149 t.Errorf(" size: %d", testCase.size)
150 t.Errorf(" expected: %#v", testCase.out)