Moving things around.

This commit is contained in:
Brian 2014-02-20 11:33:04 -07:00
parent 2b4316fc83
commit 84a9c3937e
5 changed files with 5 additions and 5 deletions

5
tests/.gitignore vendored
View file

@ -1,9 +1,12 @@
# Since we're using premake4, only include test source file and the premake4.lua, # Since we're using premake4, only include test source file and the premake4.lua,
# everything else can go. # everything else can go.
*.* *
!.gitignore !.gitignore
!.gitkeep
!main.cpp !main.cpp
!premake4.lua !premake4.lua
!igloo/
!tests/
!*.h !*.h

View file

@ -1 +0,0 @@
// TODO: look into using a library, or just create something really simple for testing.

0
tests/igloo/.gitkeep Normal file
View file

View file

@ -1,7 +1,7 @@
#include "math/Vector3.h" #include "math/Vector3.h"
// Testing Headers // Testing Headers
#include "Vector3Tests.h" #include "tests/Vector3Tests.h"
int main() int main()
{ {

View file

@ -1,8 +1,6 @@
#ifndef __VECTOR3TESTS_H__ #ifndef __VECTOR3TESTS_H__
#define __VECTOR3TESTS_H__ #define __VECTOR3TESTS_H__
# include "UnitTest.h"
class Vector3Tests // inherit from UnitTest class Vector3Tests // inherit from UnitTest
{ {
public: public: