| 292 | } |
| 293 | |
| 294 | static void TestAppend(int N, int M) { |
| 295 | TMyList l(N); |
| 296 | TMyList l2(M); |
| 297 | l.Append(l2); |
| 298 | |
| 299 | UNIT_ASSERT(l2.Empty()); |
| 300 | CheckIterationAfterAppend(l, N, M); |
| 301 | } |
| 302 | |
| 303 | void TListTest::TestAppend() { |
| 304 | ::TestAppend(500, 500); |
no test coverage detected