mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
camera test
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#ifndef CAMERA_TEST_H
|
||||
#define CAMERA_TEST_H
|
||||
|
||||
#include<cppunit/TestFixture.h>
|
||||
#include"camera.h"
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
|
||||
namespace CppUnit{
|
||||
class Test;
|
||||
}
|
||||
|
||||
namespace vb01{
|
||||
class CameraTest : public CppUnit::TestFixture{
|
||||
CPPUNIT_TEST_SUITE( CameraTest );
|
||||
CPPUNIT_TEST( testLookAt );
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
public:
|
||||
CameraTest();
|
||||
void setUp();
|
||||
void tearDown();
|
||||
void testLookAt();
|
||||
private:
|
||||
Camera *cam = nullptr;
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user