From 84a9c3937e546fd7824690d5a1f53602fc461134 Mon Sep 17 00:00:00 2001 From: Brian Date: Thu, 20 Feb 2014 11:33:04 -0700 Subject: [PATCH] Moving things around. --- tests/.gitignore | 5 ++++- tests/UnitTest.h | 1 - tests/igloo/.gitkeep | 0 tests/main.cpp | 2 +- tests/{ => tests}/Vector3Tests.h | 2 -- 5 files changed, 5 insertions(+), 5 deletions(-) delete mode 100644 tests/UnitTest.h create mode 100644 tests/igloo/.gitkeep rename tests/{ => tests}/Vector3Tests.h (85%) diff --git a/tests/.gitignore b/tests/.gitignore index 66df8dc..e73ddb5 100644 --- a/tests/.gitignore +++ b/tests/.gitignore @@ -1,9 +1,12 @@ # Since we're using premake4, only include test source file and the premake4.lua, # everything else can go. -*.* +* !.gitignore +!.gitkeep !main.cpp !premake4.lua +!igloo/ +!tests/ !*.h \ No newline at end of file diff --git a/tests/UnitTest.h b/tests/UnitTest.h deleted file mode 100644 index f1fd3e2..0000000 --- a/tests/UnitTest.h +++ /dev/null @@ -1 +0,0 @@ -// TODO: look into using a library, or just create something really simple for testing. \ No newline at end of file diff --git a/tests/igloo/.gitkeep b/tests/igloo/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/tests/main.cpp b/tests/main.cpp index 262d0c9..5c0c07f 100644 --- a/tests/main.cpp +++ b/tests/main.cpp @@ -1,7 +1,7 @@ #include "math/Vector3.h" // Testing Headers -#include "Vector3Tests.h" +#include "tests/Vector3Tests.h" int main() { diff --git a/tests/Vector3Tests.h b/tests/tests/Vector3Tests.h similarity index 85% rename from tests/Vector3Tests.h rename to tests/tests/Vector3Tests.h index 1cf1aaa..be59b4e 100644 --- a/tests/Vector3Tests.h +++ b/tests/tests/Vector3Tests.h @@ -1,8 +1,6 @@ #ifndef __VECTOR3TESTS_H__ #define __VECTOR3TESTS_H__ -# include "UnitTest.h" - class Vector3Tests // inherit from UnitTest { public: