1 #ifndef BLANK_TEST_WORLD_CHUNKTEST_H_
2 #define BLANK_TEST_WORLD_CHUNKTEST_H_
4 #include "world/BlockTypeRegistry.hpp"
6 #include <cppunit/extensions/HelperMacros.h>
13 : public CppUnit::TestFixture {
15 CPPUNIT_TEST_SUITE(ChunkTest);
17 CPPUNIT_TEST(testBounds);
18 CPPUNIT_TEST(testBorder);
19 CPPUNIT_TEST(testNeighbor);
21 CPPUNIT_TEST(testBlock);
22 CPPUNIT_TEST(testLight);
23 CPPUNIT_TEST(testLightPropagation);
25 CPPUNIT_TEST_SUITE_END();
37 void testLightPropagation();
40 BlockTypeRegistry types;