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