ember/test/ModelMountTestCase.h
2010-11-26 23:35:05 +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();
};
}