]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/lists/lists.cpp
Removing more CodeWarrior project files.
[wxWidgets.git] / tests / lists / lists.cpp
index ef259ba552245cc94d311ec9e09e2508164d830a..907e87c70af0e636eadb1211aab0962c081aae0f 100644 (file)
@@ -161,6 +161,17 @@ void ListsTestCase::wxStdListTest()
     it = list1.erase(++it, list1.end());
     CPPUNIT_ASSERT_EQUAL( 1, list1.size() );
     CPPUNIT_ASSERT( it == list1.end() );
+
+    wxListInt list2;
+    list2.push_back((int *)3);
+    list2.push_back((int *)4);
+    list1.insert(list1.begin(), list2.begin(), list2.end());
+    CPPUNIT_ASSERT_EQUAL( 3, list1.size() );
+    CPPUNIT_ASSERT_EQUAL( (int *)3, list1.front() );
+
+    list1.insert(list1.end(), list2.begin(), list2.end());
+    CPPUNIT_ASSERT_EQUAL( 5, list1.size() );
+    CPPUNIT_ASSERT_EQUAL( (int *)4, list1.back() );
 }
 
 void ListsTestCase::wxListCtorTest()