aboutsummaryrefslogtreecommitdiffstats
path: root/test/vector2d_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/vector2d_test.cpp')
-rw-r--r--test/vector2d_test.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/vector2d_test.cpp b/test/vector2d_test.cpp
deleted file mode 100644
index 2eb00de4..00000000
--- a/test/vector2d_test.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-#include "vector2d.hpp"
-
-#include <iostream>
-
-int main()
-{
- yage::Vector2D v;
- yage::Vector2D v2(1, 5);
-
- v=v2+2;
-
- std::cout<<v<<'\n';
-
- return 0;
-}