ember/tests/ModelMountTestCase.h
2016-12-20 23:32:46 +01:00

14 lines
281 B
C++

#include <cppunit/extensions/HelperMacros.h>
namespace Ember {
class ModelMountTestCase : public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(ModelMountTestCase);
CPPUNIT_TEST(testModelMountScaling);
CPPUNIT_TEST_SUITE_END();
public:
void testModelMountScaling();
};
}