]> git.localhorst.tv Git - blobs.git/blob - tst/app/AssetTest.hpp
fa158bf3ff4f33acc2a6a0df1cab88b4b5660638
[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(testLoadAll);
17
18 CPPUNIT_TEST_SUITE_END();
19
20 public:
21         void setUp();
22         void tearDown();
23
24         void testLoadAll();
25
26 };
27
28 }
29 }
30 }
31
32 #endif