included possible test building

This commit is contained in:
devZoGok
2022-07-20 15:56:23 +03:00
parent 2ab8b583e2
commit 92a4fe6992
2 changed files with 30 additions and 6 deletions
+12
View File
@@ -0,0 +1,12 @@
#include <cppunit/TestSuite.h>
#include <cppunit/TestResult.h>
#include <cppunit/TestCaller.h>
#include <cppunit/ui/text/TestRunner.h>
using namespace CppUnit;
int main(){
TextUi::TestRunner runner;
runner.run();
return 0;
}