source: OGRE/trunk/ogrenew/Tests/src/main.cpp @ 690

Revision 690, 398 bytes checked in by mattausch, 18 years ago (diff)

added ogre 1.07 main

Line 
1#include <cppunit/extensions/TestFactoryRegistry.h>
2#include <cppunit/ui/text/TestRunner.h>
3
4int main( int argc, char **argv)
5{
6    CppUnit::TextUi::TestRunner runner;
7    CppUnit::TestFactoryRegistry &registry = CppUnit::TestFactoryRegistry::getRegistry();
8    runner.addTest( registry.makeTest() );
9    bool wasSuccessful = runner.run( "", false );
10    return wasSuccessful ? 0 : 1;
11}
Note: See TracBrowser for help on using the repository browser.