1573ea991d
git-svn-id: svn://localhost/ardour2/branches/3.0@13100 d708f5d6-7413-0410-9779-e7cbd77b26cf
14 lines
346 B
C++
14 lines
346 B
C++
#include <cppunit/extensions/TestFactoryRegistry.h>
|
|
#include <cppunit/ui/text/TestRunner.h>
|
|
#include <glibmm/thread.h>
|
|
|
|
int main()
|
|
{
|
|
Glib::thread_init();
|
|
CppUnit::TextUi::TestRunner runner;
|
|
CppUnit::TestFactoryRegistry ®istry = CppUnit::TestFactoryRegistry::getRegistry();
|
|
runner.addTest (registry.makeTest());
|
|
runner.run();
|
|
return 0;
|
|
}
|