#ifndef STATIONCONFIGURATIONTEST_H #define STATIONCONFIGURATIONTEST_H #include #include class StationConfiguration; class StationConfigurationTest : public CPPUNIT_NS::TestFixture { CPPUNIT_TEST_SUITE (StationConfigurationTest); CPPUNIT_TEST (setStationNameTest); CPPUNIT_TEST_SUITE_END (); public: void setUp (void); void tearDown (void); protected: void setStationNameTest (void); private: StationConfiguration * mpStationConfiguration; }; #endif // STATIONCONFIGURATIONTEST_H