]> git.localhorst.tv Git - blobs.git/blob - tst/app/AssetTest.hpp
load universe from file
[blobs.git] / tst / app / AssetTest.hpp
1 #ifndef BLOBS_TEST_APP_ASSETTEST_HPP_
2 #define BLOBS_TEST_APP_ASSETTEST_HPP_
3
4 #include <cppunit/extensions/HelperMacros.h>
5
6
7 namespace blobs {
8 namespace app {
9 namespace test {
10
11 class AssetTest
12 : public CppUnit::TestFixture {
13
14 CPPUNIT_TEST_SUITE(AssetTest);
15
16 CPPUNIT_TEST(testLoadBasic);
17 CPPUNIT_TEST(testLoadUniverse);
18
19 CPPUNIT_TEST_SUITE_END();
20
21 public:
22         void setUp();
23         void tearDown();
24
25         void testLoadBasic();
26         void testLoadUniverse();
27
28 };
29
30 }
31 }
32 }
33
34 #endif