From e26dfc7231f9853935c9d392041a9bdc578f8013 Mon Sep 17 00:00:00 2001
From: Michele Calgaro <michele.calgaro@yahoo.it>
Date: Sat, 29 May 2021 19:05:31 +0900
Subject: Renaming of files in preparation for code style tools.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 66abbed5e08370412b81be1628590898ceeeb604)
---
 tests/main.cpp | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 tests/main.cpp

(limited to 'tests/main.cpp')

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;
+}
-- 
cgit v1.2.1