aboutsummaryrefslogtreecommitdiffstats
path: root/tests/vector3test.cpp
diff options
context:
space:
mode:
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();
-}