ember/test/ModelMountTestCase.h

15 lines
281 B
C
Raw Normal View History

2010-11-24 22:33:14 +01:00
#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();
2010-11-26 23:35:05 +01:00
2010-11-24 22:33:14 +01:00
};
}