Changeset 93 for trunk/tests/ConfigTest.cxx
- Timestamp:
- 04/20/06 05:48:51 (3 years ago)
- Files:
-
- 1 modified
-
trunk/tests/ConfigTest.cxx (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/ConfigTest.cxx
r92 r93 58 58 CPPUNIT_ASSERT_EQUAL (650, config.getWindowHeight ()); 59 59 } 60 61 /// 62 /// @brief Check setting and retrieving values related to the main window. 63 /// 64 void 65 ConfigTest::windowValues () 66 { 67 Config::loadFile (FALSE); 68 Config &config = Config::getConfig (); 69 70 config.setWindowPos (30, 40); 71 config.setWindowSize (100, 90); 72 73 CPPUNIT_ASSERT_EQUAL (30, config.getWindowX ()); 74 CPPUNIT_ASSERT_EQUAL (40, config.getWindowY ()); 75 CPPUNIT_ASSERT_EQUAL (100, config.getWindowWidth ()); 76 CPPUNIT_ASSERT_EQUAL (90, config.getWindowHeight ()); 77 }
