diff options
Diffstat (limited to 'Swiften/Application/UnitTest/ApplicationTest.cpp')
-rw-r--r-- | Swiften/Application/UnitTest/ApplicationTest.cpp | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/Swiften/Application/UnitTest/ApplicationTest.cpp b/Swiften/Application/UnitTest/ApplicationTest.cpp deleted file mode 100644 index 8be3d4d..0000000 --- a/Swiften/Application/UnitTest/ApplicationTest.cpp +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright (c) 2010 Remko Tronçon - * Licensed under the GNU General Public License v3. - * See Documentation/Licenses/GPLv3.txt for more information. - */ - -#include <cppunit/extensions/HelperMacros.h> -#include <cppunit/extensions/TestFactoryRegistry.h> - -#include "Swiften/Application/Application.h" -#include "Swiften/Application/Platform/PlatformApplication.h" - -using namespace Swift; - -class ApplicationTest : public CppUnit::TestFixture -{ - CPPUNIT_TEST_SUITE(ApplicationTest); - CPPUNIT_TEST(testGetSettingsDir); - CPPUNIT_TEST_SUITE_END(); - - public: - ApplicationTest() {} - - void setUp() { - testling_ = new PlatformApplication("SwiftTest"); - } - - void tearDown() { - delete testling_; - } - - void testGetSettingsDir() { - boost::filesystem::path dir = testling_->getSettingsDir(); - - CPPUNIT_ASSERT(boost::filesystem::exists(dir)); - CPPUNIT_ASSERT(boost::filesystem::is_directory(dir)); - - boost::filesystem::remove(dir); - } - - private: - Application* testling_; -}; - -CPPUNIT_TEST_SUITE_REGISTRATION(ApplicationTest); |