]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/controls/textctrltest.cpp
get rid of special WX_ASSERT_FOO_EQUAL macros by defining CppUnit::assertEquals(...
[wxWidgets.git] / tests / controls / textctrltest.cpp
index 4c4234be44e30556516c228bb2c1e5d0547f8e13..e75252f308d3aa8c6506a80bcdf54099ccb8d2d7 100644 (file)
@@ -79,16 +79,16 @@ void TextCtrlTestCase::SetValue()
     CPPUNIT_ASSERT( m_text->IsEmpty() );
 
     m_text->SetValue("foo");
-    WX_ASSERT_STR_EQUAL( "foo", m_text->GetValue() );
+    CPPUNIT_ASSERT_EQUAL( "foo", m_text->GetValue() );
 
     m_text->SetValue("");
     CPPUNIT_ASSERT( m_text->IsEmpty() );
 
     m_text->SetValue("hi");
-    WX_ASSERT_STR_EQUAL( "hi", m_text->GetValue() );
+    CPPUNIT_ASSERT_EQUAL( "hi", m_text->GetValue() );
 
     m_text->SetValue("bye");
-    WX_ASSERT_STR_EQUAL( "bye", m_text->GetValue() );
+    CPPUNIT_ASSERT_EQUAL( "bye", m_text->GetValue() );
 }
 
 void TextCtrlTestCase::TextChangeEvents()