]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/lists/lists.cpp
Updating OpenVMS compile configuration
[wxWidgets.git] / tests / lists / lists.cpp
index f634eb523145cd61d70ea61aa8a1deccc3525a6b..907e87c70af0e636eadb1211aab0962c081aae0f 100644 (file)
@@ -156,6 +156,22 @@ void ListsTestCase::wxStdListTest()
     list1.insert(list1.end(), (int *)2);
     CPPUNIT_ASSERT_EQUAL( (int *)1, list1.front() );
     CPPUNIT_ASSERT_EQUAL( (int *)2, list1.back() );
+
+    it = list1.begin();
+    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()