mirror of
https://github.com/worldforge/worldforge
synced 2026-08-17 16:26:05 -04:00
This is a mainly automatic reformat of all code so that it uses the same format as Ember. The idea is to make development easier by removing any differences in formatting. In addition to formatting there has been a couple of fixes to smaller code issues.
13 lines
257 B
C++
13 lines
257 B
C++
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
namespace Ember {
|
|
class ConvertTestCase : public CppUnit::TestFixture {
|
|
CPPUNIT_TEST_SUITE(ConvertTestCase);
|
|
CPPUNIT_TEST(testWFMathToOgre);
|
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
public:
|
|
void testWFMathToOgre();
|
|
};
|
|
}
|