diff options
Diffstat (limited to 'project2/ice/unittests/testClient.cpp')
-rw-r--r-- | project2/ice/unittests/testClient.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/project2/ice/unittests/testClient.cpp b/project2/ice/unittests/testClient.cpp index 3b3c790..97acd0b 100644 --- a/project2/ice/unittests/testClient.cpp +++ b/project2/ice/unittests/testClient.cpp @@ -13,6 +13,7 @@ #include <scopeObject.h> #include <unittest.h> #include <unittestComplex.h> +#include <appInstance.h> #define XSTR(s) STR(s) #define STR(s) #s @@ -152,6 +153,9 @@ unloadTests() } void test_client_run(const boost::filesystem::path & tmpdir); + +BOOST_FIXTURE_TEST_SUITE( Core, AppInstance ); + BOOST_AUTO_TEST_CASE( test_client ) { const boost::filesystem::path tmpdir = "/tmp/ut/project2.slice-client"; @@ -163,6 +167,8 @@ BOOST_AUTO_TEST_CASE( test_client ) boost::filesystem::remove_all(tmpdir); } +BOOST_AUTO_TEST_SUITE_END(); + void test_client_run(const boost::filesystem::path & tmpdir) { BOOST_TEST_CHECKPOINT("Configure, compile, link, load"); |