aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-12-23 01:37:09 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-12-23 01:40:47 +0000
commitddd26ed83d3ac0335562f762ced273a1d62bd959 (patch)
treea697de87564846e784fd1256d71c94270d8ec51d /tests
parent0ac42fb77773e15b13f1ede01dd1efd920a8fb9b (diff)
downloadYAGE-ddd26ed83d3ac0335562f762ced273a1d62bd959.tar.gz
YAGE-ddd26ed83d3ac0335562f762ced273a1d62bd959.zip
[Style] Updated style in files.
Diffstat (limited to 'tests')
-rw-r--r--tests/active/test.cpp2
-rw-r--r--tests/log/test.cpp2
-rw-r--r--tests/matrix/test.cpp2
-rw-r--r--tests/particlebody/test.cpp4
-rw-r--r--tests/spritesheet/test.cpp2
-rw-r--r--tests/struct/test.cpp2
-rw-r--r--tests/syncqueue/test.cpp2
-rw-r--r--tests/thread/test.cpp2
-rw-r--r--tests/vector3/test.cpp10
-rw-r--r--tests/vector4/test.cpp10
-rw-r--r--tests/window/test.cpp2
-rw-r--r--tests/yage/test.cpp2
12 files changed, 21 insertions, 21 deletions
diff --git a/tests/active/test.cpp b/tests/active/test.cpp
index 3d561283..d907a1cc 100644
--- a/tests/active/test.cpp
+++ b/tests/active/test.cpp
@@ -1,5 +1,5 @@
/** ---------------------------------------------------------------------------
- * @file: activetest.cpp
+ * @file: test.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
diff --git a/tests/log/test.cpp b/tests/log/test.cpp
index e1010754..53c2894b 100644
--- a/tests/log/test.cpp
+++ b/tests/log/test.cpp
@@ -1,5 +1,5 @@
/** ---------------------------------------------------------------------------
- * @file: logtest.cpp
+ * @file: test.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
diff --git a/tests/matrix/test.cpp b/tests/matrix/test.cpp
index 1e316502..022775af 100644
--- a/tests/matrix/test.cpp
+++ b/tests/matrix/test.cpp
@@ -1,5 +1,5 @@
/** ---------------------------------------------------------------------------
- * @file: matrixtest.cpp
+ * @file: test.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
diff --git a/tests/particlebody/test.cpp b/tests/particlebody/test.cpp
index 09277826..65c26d5d 100644
--- a/tests/particlebody/test.cpp
+++ b/tests/particlebody/test.cpp
@@ -1,5 +1,5 @@
/** ---------------------------------------------------------------------------
- * @file: particlebodytest.cpp
+ * @file: test.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
@@ -26,7 +26,7 @@ double gravityAcceleration(int iterations)
TEST(ParticleBody, Gravity)
{
- int randomItr = rand() % 10;
+ int randomItr = rand() % 10;
double idealPosition = 0.5 * -9.81 * std::pow(randomItr, 2);
ASSERT_GE(idealPosition * 0.95, gravityAcceleration(randomItr));
diff --git a/tests/spritesheet/test.cpp b/tests/spritesheet/test.cpp
index fcfc842c..4d4cc1a4 100644
--- a/tests/spritesheet/test.cpp
+++ b/tests/spritesheet/test.cpp
@@ -1,5 +1,5 @@
/** ---------------------------------------------------------------------------
- * @file: spritesheettest.cpp
+ * @file: test.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
diff --git a/tests/struct/test.cpp b/tests/struct/test.cpp
index 99752abb..0288f06b 100644
--- a/tests/struct/test.cpp
+++ b/tests/struct/test.cpp
@@ -1,5 +1,5 @@
/** ---------------------------------------------------------------------------
- * @file: structtest.cpp
+ * @file: test.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
diff --git a/tests/syncqueue/test.cpp b/tests/syncqueue/test.cpp
index 1d7d8037..f5c7d7c3 100644
--- a/tests/syncqueue/test.cpp
+++ b/tests/syncqueue/test.cpp
@@ -1,5 +1,5 @@
/** ---------------------------------------------------------------------------
- * @file: syncqueuetest.cpp
+ * @file: test.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
diff --git a/tests/thread/test.cpp b/tests/thread/test.cpp
index 0527665a..c9178abd 100644
--- a/tests/thread/test.cpp
+++ b/tests/thread/test.cpp
@@ -1,5 +1,5 @@
/** ---------------------------------------------------------------------------
- * @file: threadtest.cpp
+ * @file: test.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
diff --git a/tests/vector3/test.cpp b/tests/vector3/test.cpp
index 570a5c10..e65d29f1 100644
--- a/tests/vector3/test.cpp
+++ b/tests/vector3/test.cpp
@@ -1,5 +1,5 @@
/** ---------------------------------------------------------------------------
- * @file: vector3test.cpp
+ * @file: test.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
@@ -7,7 +7,7 @@
*/
/** ---------------------------------------------------------------------------
- * @file: vector3test.cpp
+ * @file: test.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
@@ -15,7 +15,7 @@
*/
/** ---------------------------------------------------------------------------
- * @file: vector3test.cpp
+ * @file: test.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
@@ -23,7 +23,7 @@
*/
/** ---------------------------------------------------------------------------
- * @file: vector3test.cpp
+ * @file: test.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
@@ -31,7 +31,7 @@
*/
/** ---------------------------------------------------------------------------
- * @file: vector3test.cpp
+ * @file: test.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
diff --git a/tests/vector4/test.cpp b/tests/vector4/test.cpp
index 53554a25..6ef5462d 100644
--- a/tests/vector4/test.cpp
+++ b/tests/vector4/test.cpp
@@ -1,5 +1,5 @@
/** ---------------------------------------------------------------------------
- * @file: vector4test.cpp
+ * @file: test.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
@@ -7,7 +7,7 @@
*/
/** ---------------------------------------------------------------------------
- * @file: vector4test.cpp
+ * @file: test.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
@@ -15,7 +15,7 @@
*/
/** ---------------------------------------------------------------------------
- * @file: vector4test.cpp
+ * @file: test.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
@@ -23,7 +23,7 @@
*/
/** ---------------------------------------------------------------------------
- * @file: vector4test.cpp
+ * @file: test.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
@@ -31,7 +31,7 @@
*/
/** ---------------------------------------------------------------------------
- * @file: vector4test.cpp
+ * @file: test.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
diff --git a/tests/window/test.cpp b/tests/window/test.cpp
index 40b7e664..d9402d49 100644
--- a/tests/window/test.cpp
+++ b/tests/window/test.cpp
@@ -1,5 +1,5 @@
/** ---------------------------------------------------------------------------
- * @file: windowtest.cpp
+ * @file: test.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
diff --git a/tests/yage/test.cpp b/tests/yage/test.cpp
index a599eba2..8129306b 100644
--- a/tests/yage/test.cpp
+++ b/tests/yage/test.cpp
@@ -1,5 +1,5 @@
/** ---------------------------------------------------------------------------
- * @file: yagetest.cpp
+ * @file: test.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.