worldforge/apps/ember/tests/TestOgreView.cpp
Erik Ogenvik 3e67875e77 Reformat with one formatting style.
This is a mainly automatic reformat of all code so that it uses the same format as Ember.
The idea is to make development easier by removing any differences in formatting.

In addition to formatting there has been a couple of fixes to smaller code issues.
2023-12-12 23:44:37 +01:00

18 lines
545 B
C++

#include <cppunit/extensions/TestFactoryRegistry.h>
#include <cppunit/ui/text/TestRunner.h>
#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;
}