aboutsummaryrefslogtreecommitdiffstats
path: root/tests/vector3test.cpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-12-22 21:16:02 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-12-22 21:19:21 +0000
commitfb8197839c0bebc20fd68ee3f280da934c49c473 (patch)
treee4ccb024144cb5b41f9e572984e3278c2b0b51d0 /tests/vector3test.cpp
parentd6b25272499352383214c738faa8ce1870df37f3 (diff)
downloadYAGE-fb8197839c0bebc20fd68ee3f280da934c49c473.tar.gz
YAGE-fb8197839c0bebc20fd68ee3f280da934c49c473.zip
Removing editor and refactoring code.
Diffstat (limited to 'tests/vector3test.cpp')
-rw-r--r--tests/vector3test.cpp94
1 files changed, 0 insertions, 94 deletions
diff --git a/tests/vector3test.cpp b/tests/vector3test.cpp
deleted file mode 100644
index 570a5c10..00000000
--- a/tests/vector3test.cpp
+++ /dev/null
@@ -1,94 +0,0 @@
-/** ---------------------------------------------------------------------------
- * @file: vector3test.cpp
- *
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
- * MIT License, see LICENSE file for more details.
- * ----------------------------------------------------------------------------
- */
-
-/** ---------------------------------------------------------------------------
- * @file: vector3test.cpp
- *
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
- * MIT License, see LICENSE file for more details.
- * ----------------------------------------------------------------------------
- */
-
-/** ---------------------------------------------------------------------------
- * @file: vector3test.cpp
- *
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
- * MIT License, see LICENSE file for more details.
- * ----------------------------------------------------------------------------
- */
-
-/** ---------------------------------------------------------------------------
- * @file: vector3test.cpp
- *
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
- * MIT License, see LICENSE file for more details.
- * ----------------------------------------------------------------------------
- */
-
-/** ---------------------------------------------------------------------------
- * @file: vector3test.cpp
- *
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
- * MIT License, see LICENSE file for more details.
- * ----------------------------------------------------------------------------
- */
-
-#include <gtest/gtest.h>
-#include <yage/yage.h>
-
-#include <cstdlib>
-#include <ctime>
-
-using namespace yage;
-
-TEST(Vector3, Initialize)
-{
- Vector3i vec{{rand(), rand(), rand()}};
- ASSERT_EQ(vec.x, vec[0]);
- ASSERT_EQ(vec.y, vec[1]);
- ASSERT_EQ(vec.z, vec[2]);
-}
-
-TEST(Vector3, Assigning_x)
-{
- Vector3i vec{{rand(), rand(), rand()}};
- ASSERT_EQ(vec.x, vec[0]);
- vec.x = rand();
- ASSERT_EQ(vec.x, vec[0]);
- vec[0] = rand();
- ASSERT_EQ(vec.x, vec[0]);
-}
-
-TEST(Vector3, Assigning_y)
-{
- Vector3i vec{{rand(), rand(), rand()}};
- ASSERT_EQ(vec.y, vec[1]);
- vec.x = rand();
- ASSERT_EQ(vec.y, vec[1]);
- vec[1] = rand();
- ASSERT_EQ(vec.y, vec[1]);
-}
-
-TEST(Vector3, Assigning_z)
-{
- Vector3i vec{{rand(), rand(), rand()}};
- ASSERT_EQ(vec.z, vec[2]);
- vec.z = rand();
- ASSERT_EQ(vec.z, vec[2]);
- vec[2] = rand();
- ASSERT_EQ(vec.z, vec[2]);
-}
-
-TEST(Vector3, Addition) {}
-
-int main(int argc, char **argv)
-{
- testing::InitGoogleTest(&argc, argv);
- srand(time(nullptr));
- return RUN_ALL_TESTS();
-}