00001
00002
00003
00004
00005
00006
00007
00008
00010
00011 #ifndef SWINITWXGUITESTSETUP_H
00012 #define SWINITWXGUITESTSETUP_H
00013
00014 #ifdef __GNUG__
00015 #pragma interface "InitWxGuiTestSetUp.h"
00016 #endif
00017
00018 #include <wxGuiTest/Common.h>
00019
00020 #include <cppunit/extensions/TestSetUp.h>
00021
00022 namespace wxTst {
00023
00024
00036 class InitWxGuiTestSetUp : public CPPUNIT_NS::TestSetUp
00037 {
00038 public:
00044 InitWxGuiTestSetUp (CPPUNIT_NS::Test *test);
00045
00046
00050 virtual ~InitWxGuiTestSetUp ();
00051
00052
00062 virtual void run (CPPUNIT_NS::TestResult *result);
00063
00064
00070 virtual void RunAsDecorator ();
00071
00072 protected:
00076 virtual void setUp ();
00077
00078
00082 virtual void tearDown ();
00083
00084 private:
00085
00086 CPPUNIT_NS::TestResult *m_result;
00087
00088 };
00089
00090 }
00091
00092 #endif // SWINITWXGUITESTSETUP_H
00093