camera test

This commit is contained in:
devZoGok
2021-10-19 19:06:41 +03:00
parent f61dd45e91
commit 2a16c82be4
4 changed files with 75 additions and 1 deletions
+27
View File
@@ -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