#include #include #include "ConvertTestCase.h" #include "ModelMountTestCase.h" CPPUNIT_TEST_SUITE_REGISTRATION( Ember::ConvertTestCase); CPPUNIT_TEST_SUITE_REGISTRATION( Ember::ModelMountTestCase ); int main(int argc, char** argv) { CppUnit::TextUi::TestRunner runner; CppUnit::TestFactoryRegistry& registry = CppUnit::TestFactoryRegistry::getRegistry(); runner.addTest(registry.makeTest()); bool wasSuccessful = runner.run("", false); return !wasSuccessful; }