mirror of
https://github.com/ApfelTeeSaft/vb01.git
synced 2026-08-26 19:33:45 +00:00
16 lines
314 B
C++
Executable File
16 lines
314 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"
|
|
|
|
using namespace CppUnit;
|
|
using namespace vb01;
|
|
|
|
int main(){
|
|
TextUi::TestRunner runner;
|
|
runner.addTest(CameraTest::suite());
|
|
runner.run();
|
|
return 0;
|
|
}
|