]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/toplevel/toplevel.cpp
default implementation for scaled bitmaps properties
[wxWidgets.git] / tests / toplevel / toplevel.cpp
index 0e5b42db0e1f8ba7b46f750deb0a30f29f53a8f2..2c129ec4797e9b22694212f71ad09f8de480e700 100644 (file)
@@ -35,9 +35,6 @@ class TopLevelWindowTestCase : public CppUnit::TestCase
 public:
     TopLevelWindowTestCase() { }
 
-    virtual void setUp();
-    virtual void tearDown();
-
 private:
     CPPUNIT_TEST_SUITE( TopLevelWindowTestCase );
         CPPUNIT_TEST( DialogShowTest );
@@ -57,18 +54,6 @@ private:
 // also include in its own registry so that these tests can be run alone
 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( TopLevelWindowTestCase, "fixme" );
 
-// ----------------------------------------------------------------------------
-// test initialization
-// ----------------------------------------------------------------------------
-
-void TopLevelWindowTestCase::setUp()
-{
-}
-
-void TopLevelWindowTestCase::tearDown()
-{
-}
-
 // ----------------------------------------------------------------------------
 // tests themselves
 // ----------------------------------------------------------------------------
@@ -90,25 +75,25 @@ void TopLevelWindowTestCase::FrameShowTest()
 void TopLevelWindowTestCase::TopLevelWindowShowTest(wxTopLevelWindow* tlw)
 {
     CPPUNIT_ASSERT(!tlw->IsShown());
-    
+
     wxTextCtrl* textCtrl = new wxTextCtrl(tlw, -1, "test");
     textCtrl->SetFocus();
-    
+
 // only run this test on platforms where ShowWithoutActivating is implemented.
 #if defined(__WXMSW__) || defined(__WXMAC__)
     tlw->ShowWithoutActivating();
     CPPUNIT_ASSERT(tlw->IsShown());
     CPPUNIT_ASSERT(!tlw->IsActive());
-    
+
     tlw->Hide();
     CPPUNIT_ASSERT(!tlw->IsShown());
     CPPUNIT_ASSERT(!tlw->IsActive());
 #endif
-    
+
     tlw->Show(true);
     CPPUNIT_ASSERT(tlw->IsActive());
     CPPUNIT_ASSERT(tlw->IsShown());
-    
+
     tlw->Hide();
     CPPUNIT_ASSERT(!tlw->IsShown());
     CPPUNIT_ASSERT(tlw->IsActive());