mirror of
https://github.com/worldforge/ember
synced 2026-08-13 16:23:06 -04:00
12 lines
263 B
C++
12 lines
263 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();
|
|
};
|
|
}
|