paysages3d/src/tests/Layers_Test.h

25 lines
520 B
C
Raw Normal View History

2013-10-31 21:53:22 +00:00
#ifndef LAYERS_TEST_H
#define LAYERS_TEST_H
#include "BaseTestCase.h"
class Layers_Test: public BaseTestCase
{
public:
CPPUNIT_TEST_SUITE(Layers_Test);
CPPUNIT_TEST(testConstructor);
CPPUNIT_TEST(testNullLayer);
CPPUNIT_TEST(testCopy);
CPPUNIT_TEST(testMaxLayerCount);
2013-10-31 23:09:51 +00:00
CPPUNIT_TEST(testLegacyLayers);
2013-10-31 21:53:22 +00:00
CPPUNIT_TEST_SUITE_END();
void testConstructor();
void testNullLayer();
void testCopy();
void testMaxLayerCount();
2013-10-31 23:09:51 +00:00
void testLegacyLayers();
2013-10-31 21:53:22 +00:00
};
#endif // LAYERS_TEST_H