]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/streams/bstream.cpp
remove extraneous returns
[wxWidgets.git] / tests / streams / bstream.cpp
index 6d17c74f36f09abb4044bc575ffff72c8e02b67c..82cbc34d6c6376e8600094e211f27a33671bb6b7 100644 (file)
@@ -7,13 +7,9 @@
 // Licence:     wxWidgets licence
 ///////////////////////////////////////////////////////////////////////////////
 
-#if defined(__GNUG__) && !defined(__APPLE__)
-    #pragma implementation
-    #pragma interface
-#endif
-
 // For compilers that support precompilation, includes "wx/wx.h".
-#include "wx/wxprec.h"
+// and "wx/cppunit.h"
+#include "testprec.h"
 
 #ifdef __BORLANDC__
     #pragma hdrstop
     #include "wx/wx.h"
 #endif
 
-#include "wx/cppunit.h"
 #include "bstream.h"
 
-using namespace CppUnit;
+using CppUnit::TestSuite;
+using CppUnit::Test;
 
 ///////////////////////////////////////////////////////////////////////////////
 // Streams main test suite, it houses all stream test suites.
@@ -36,8 +32,8 @@ using namespace CppUnit;
 class StreamCase : public TestSuite
 {
 public:
-    StreamCase() 
-        :TestSuite("Streams") 
+    StreamCase()
+        :TestSuite(STREAM_TEST_NAME)
     { /* Nothing extra */ }
     static Test *suite();
 };
@@ -49,13 +45,25 @@ Test *StreamCase::suite()
     /*
      * Register all sub stream test suites.
      */
-    
+
+#if 0
     STREAM_REGISTER_SUB_SUITE(memStream);
+    STREAM_REGISTER_SUB_SUITE(strStream);
     STREAM_REGISTER_SUB_SUITE(fileStream);
     STREAM_REGISTER_SUB_SUITE(ffileStream);
+    STREAM_REGISTER_SUB_SUITE(tempStream);
     STREAM_REGISTER_SUB_SUITE(zlibStream);
+    STREAM_REGISTER_SUB_SUITE(backStream);
 
-    /* 
+    extern CppUnit::Test* GetlargeFileSuite();
+    Test *lfs = GetlargeFileSuite();
+    if (lfs)
+        suite->addTest(lfs);
+#endif
+
+    STREAM_REGISTER_SUB_SUITE(socketStream);
+
+    /*
     ** Add more stream subtests here
     */