aboutsummaryrefslogtreecommitdiffstats
path: root/tests/engine/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/engine/test.cpp')
-rw-r--r--tests/engine/test.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/engine/test.cpp b/tests/engine/test.cpp
deleted file mode 100644
index 5095a974..00000000
--- a/tests/engine/test.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <yage/entity/space.h>
-
-#include <yage/yage.h>
-
-int main()
-{
- yage::Space space;
- auto entity = space.createEntity();
- auto entity2 = space.createEntity();
- auto entity3 = space.createEntity();
- auto entity4 = space.createEntity();
-
- yLogInfo << "Entity 1: " << entity;
- yLogInfo << "Entity 3: " << entity3;
- yLogInfo << "Entity 2: " << entity2;
- yLogInfo << "Entity 4: " << entity4;
-
- return 0;
-}