Home | History | Annotate | Download | only in test

Lines Matching refs:PushFront

419 // Tests List::PushFront().
420 TEST(ListTest, PushFront) {
424 // Calls PushFront() on an empty list.
425 a.PushFront(1);
430 // Calls PushFront() on a singleton list.
431 a.PushFront(2);
436 PushFront() on a list with more than one elements.
437 a.PushFront(3);
457 a.PushFront(2);
458 a.PushFront(3);