summaryrefslogtreecommitdiffstats
path: root/tests/main.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2021-05-29 19:05:31 +0900
committerMichele Calgaro <[email protected]>2021-05-29 20:15:41 +0900
commite26dfc7231f9853935c9d392041a9bdc578f8013 (patch)
tree82429334cf31b0cf1bf121222d8349447f901446 /tests/main.cpp
parent6dcc291edfdc3832f6e1eb8bcdce8fff79b0a449 (diff)
downloadkpilot-e26dfc7231f9853935c9d392041a9bdc578f8013.tar.gz
kpilot-e26dfc7231f9853935c9d392041a9bdc578f8013.zip
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 66abbed5e08370412b81be1628590898ceeeb604)
Diffstat (limited to 'tests/main.cpp')
-rw-r--r--tests/main.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/main.cpp b/tests/main.cpp
new file mode 100644
index 0000000..c6ddd23
--- /dev/null
+++ b/tests/main.cpp
@@ -0,0 +1,17 @@
+#include <cppunit/extensions/TestFactoryRegistry.h>
+#include <cppunit/ui/text/TestRunner.h>
+
+int main( int argc, char **argv)
+{
+ CppUnit::TestFactoryRegistry &registry =
+ CppUnit::TestFactoryRegistry::getRegistry();
+
+ CppUnit::TextUi::TestRunner runner;
+ runner.addTest( registry.makeTest() );
+
+ // Run the tests.
+ bool wasSucessful = runner.run();
+
+ // Return error code 1 if the one of test failed.
+ return wasSucessful ? 0 : 1;
+}