You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.3 KiB
58 lines
1.3 KiB
/* |
|
* Xournal++ |
|
* |
|
* This file is part of the Xournal UnitTests |
|
* |
|
* @author Xournal++ Team |
|
* https://github.com/xournalpp/xournalpp |
|
* |
|
* @license GNU GPLv2 or later |
|
*/ |
|
|
|
#include <config-dev.h> |
|
#include <config-test.h> |
|
#include <CrashHandler.h> |
|
#include <XournalType.h> |
|
|
|
#include <cppunit/CompilerOutputter.h> |
|
#include <cppunit/extensions/TestFactoryRegistry.h> |
|
#include <cppunit/ui/text/TestRunner.h> |
|
|
|
#include <iostream> |
|
using std::cout; |
|
using std::endl; |
|
|
|
/** |
|
* Main Entry point for CppUnit Tests |
|
*/ |
|
int main(int argc, char* argv[]) |
|
{ |
|
// init crash handler |
|
installCrashHandlers(); |
|
|
|
#ifdef DEV_CALL_LOG |
|
Log::initlog(); |
|
#endif |
|
|
|
// Get the top level suite from the registry |
|
CppUnit::Test *suite = CppUnit::TestFactoryRegistry::getRegistry().makeTest(); |
|
|
|
// Adds the test to the list of test to run |
|
CppUnit::TextUi::TestRunner runner; |
|
runner.addTest(suite); |
|
|
|
// Change the default outputter to a compiler error format outputter |
|
runner.setOutputter(new CppUnit::CompilerOutputter(&runner.result(), std::cerr)); |
|
|
|
// Run the tests. |
|
bool wasSucessful = runner.run(); |
|
|
|
cout << "CppUnit result: " << (wasSucessful ? "succeeded" : "FAILED") << endl; |
|
|
|
#ifdef DEV_CALL_LOG |
|
Log::closelog(); |
|
#endif |
|
|
|
// Return error code 1 if the one of test failed. |
|
return wasSucessful ? 0 : 1; |
|
}
|
|
|