mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
14 lines
423 B
C++
14 lines
423 B
C++
|
#include <cppunit/CompilerOutputter.h>
|
||
|
#include <cppunit/extensions/TestFactoryRegistry.h>
|
||
|
#include <cppunit/ui/text/TestRunner.h>
|
||
|
|
||
|
int main(int argc, char *argv[]) {
|
||
|
CppUnit::Test *suite = CppUnit::TestFactoryRegistry::getRegistry().makeTest();
|
||
|
CppUnit::TextUi::TestRunner runner;
|
||
|
|
||
|
runner.addTest(suite);
|
||
|
runner.setOutputter(new CppUnit::CompilerOutputter(&runner.result(), std::cerr));
|
||
|
|
||
|
return !runner.run();
|
||
|
}
|