mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
19 lines
373 B
C++
Executable File
19 lines
373 B
C++
Executable File
#include <cppunit/TestSuite.h>
|
|
#include <cppunit/TestResult.h>
|
|
#include <cppunit/TestCaller.h>
|
|
#include <cppunit/ui/text/TestRunner.h>
|
|
|
|
#include "cameraTest.h"
|
|
#include "nodeTest.h"
|
|
|
|
using namespace CppUnit;
|
|
using namespace vb01;
|
|
|
|
int main(){
|
|
TextUi::TestRunner runner;
|
|
runner.addTest(CameraTest::suite());
|
|
runner.addTest(NodeTest::suite());
|
|
runner.run();
|
|
return 0;
|
|
}
|