aboutsummaryrefslogtreecommitdiffstats
path: root/test/particlebodytest.cpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-09-09 06:18:53 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-09-09 06:21:36 +0100
commit660996bd750dbb5fcdce85845ee6b260f3ed23eb (patch)
treedc4f9931adf728379e571748eb954db1cf2eb65b /test/particlebodytest.cpp
parenta9893965737269512e9c75e87938312d707cb351 (diff)
downloadYAGE-660996bd750dbb5fcdce85845ee6b260f3ed23eb.tar.gz
YAGE-660996bd750dbb5fcdce85845ee6b260f3ed23eb.zip
Renaming test to tests
Diffstat (limited to 'test/particlebodytest.cpp')
-rw-r--r--test/particlebodytest.cpp41
1 files changed, 0 insertions, 41 deletions
diff --git a/test/particlebodytest.cpp b/test/particlebodytest.cpp
deleted file mode 100644
index b359cb73..00000000
--- a/test/particlebodytest.cpp
+++ /dev/null
@@ -1,41 +0,0 @@
-/* ----------------------------------------------------------------------------
- * rigidbodytest.cpp
- *
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
- * See file LICENSE for more details
- * ----------------------------------------------------------------------------
- */
-
-#include <YAGE/Physics/particlebody.h>
-#include <gtest/gtest.h>
-
-#include <cmath>
-#include <cstdlib>
-
-double gravityAcceleration(int iterations)
-{
- yage::ParticleBody body;
- for (int i = 0; i < 60 * iterations; ++i) {
- body.update();
- }
-
- return body.yPosition();
-}
-
-// Tests
-
-TEST(ParticleBody, Gravity)
-{
- int randomItr = rand() % 10;
- double idealPosition = 0.5 * -9.81 * std::pow(randomItr, 2);
-
- ASSERT_GE(idealPosition * 0.95, gravityAcceleration(randomItr));
- ASSERT_LE(idealPosition * 1.05, gravityAcceleration(randomItr));
-}
-
-int main(int argc, char **argv)
-{
- testing::InitGoogleTest(&argc, argv);
- srand(static_cast<unsigned>(time(nullptr)));
- return RUN_ALL_TESTS();
-}