From 87311540bde93dc6ebf0aeb8fbac122346a99821 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sat, 2 Sep 2017 12:23:28 +0100 Subject: Fixed includes and standardized them --- test/matrixtest.cpp | 7 +++---- test/particlebodytest.cpp | 6 +++--- test/windowtest.cpp | 5 ++--- test/yagetest.cpp | 4 ++-- 4 files changed, 10 insertions(+), 12 deletions(-) (limited to 'test') diff --git a/test/matrixtest.cpp b/test/matrixtest.cpp index c969f39f..b570f6d4 100644 --- a/test/matrixtest.cpp +++ b/test/matrixtest.cpp @@ -6,15 +6,14 @@ * ---------------------------------------------------------------------------- */ +#include +#include + #include #include #include #include -#include "Math/math.hpp" - -#include "gtest/gtest.h" - template int matrixAddition(int num1, int num2) { diff --git a/test/particlebodytest.cpp b/test/particlebodytest.cpp index 65c3885c..b359cb73 100644 --- a/test/particlebodytest.cpp +++ b/test/particlebodytest.cpp @@ -6,12 +6,12 @@ * ---------------------------------------------------------------------------- */ +#include +#include + #include #include -#include "Physics/particlebody.hpp" -#include "gtest/gtest.h" - double gravityAcceleration(int iterations) { yage::ParticleBody body; diff --git a/test/windowtest.cpp b/test/windowtest.cpp index 22760c21..e6739720 100644 --- a/test/windowtest.cpp +++ b/test/windowtest.cpp @@ -6,9 +6,8 @@ * ---------------------------------------------------------------------------- */ -#include "gtest/gtest.h" - -#include "yage.hpp" +#include +#include TEST(Window, Open) { diff --git a/test/yagetest.cpp b/test/yagetest.cpp index 39ef5072..8d590b4a 100644 --- a/test/yagetest.cpp +++ b/test/yagetest.cpp @@ -6,9 +6,9 @@ * ---------------------------------------------------------------------------- */ -#include "gtest/gtest.h" +#include -#include "yage.hpp" +#include TEST(YAGE, InitQuit) { -- cgit