]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/test.cpp
updating the comment as well
[wxWidgets.git] / tests / test.cpp
index b2fd91868cdabceba5a908bc8e30960bc1b1d0f7..af8353ceb225f13ac317ba0b1efebc1e462d21b8 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,20 +78,13 @@ 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");
 #endif // wxUSE_GUI
 
     return true;
-};
+}
 
 // The table of command line options
 //