]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/test.cpp
implement wxListCtrl::GetSubItemRect() for generic version and fix bug in it in wxMSW...
[wxWidgets.git] / tests / test.cpp
index b2fd91868cdabceba5a908bc8e30960bc1b1d0f7..406e6dcd391db61686231c44c81cf285319b483a 100644 (file)
@@ -29,10 +29,7 @@ using CppUnit::TestFactoryRegistry;
 using CppUnit::TextUi::TestRunner;
 using CppUnit::CompilerOutputter;
 
-using std::string;
-using std::vector;
-using std::auto_ptr;
-using std::cout;
+using namespace std;
 
 #if wxUSE_GUI
     typedef wxApp TestAppBase;
@@ -81,13 +78,6 @@ bool TestApp::OnInit()
     cout << "Test program for wxWidgets\n"
          << "build: " << WX_BUILD_OPTIONS_SIGNATURE << std::endl;
 
-#if !wxUSE_WXVSNPRINTF
-    cout << "\n";
-    cout << "WARNING: VsnprintfTestCase will test the system vsnprintf() function\n";
-    cout << "         instead of the wxWidgets wxVsnprintf_ implementation!" << std::endl;
-    cout << "\n";
-#endif
-
 #if wxUSE_GUI
     // create a hidden parent window to be used as parent for the GUI controls
     new wxFrame(NULL, wxID_ANY, "Hidden wx test frame");