mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
13 lines
319 B
C++
13 lines
319 B
C++
|
|
#include <cppunit/extensions/TestFactoryRegistry.h>
|
||
|
|
#include <cppunit/ui/text/TestRunner.h>
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
Glib::thread_init();
|
||
|
|
CppUnit::TextUi::TestRunner runner;
|
||
|
|
CppUnit::TestFactoryRegistry ®istry = CppUnit::TestFactoryRegistry::getRegistry();
|
||
|
|
runner.addTest (registry.makeTest());
|
||
|
|
runner.run();
|
||
|
|
return 0;
|
||
|
|
}
|