ember/test/ConvertTestCase.h
Erik Hjortsberg 1d2d04034e Activate unit tests through CppUnit.
Start with a unit test for WF-to-Ogre unit conversions.
2010-11-21 23:25:36 +01:00

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();
};
}