aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/matrixtest.cpp5
-rw-r--r--test/windowtest.cpp5
-rw-r--r--test/yagetest.cpp5
3 files changed, 12 insertions, 3 deletions
diff --git a/test/matrixtest.cpp b/test/matrixtest.cpp
index d388948b..bbcbb440 100644
--- a/test/matrixtest.cpp
+++ b/test/matrixtest.cpp
@@ -47,7 +47,10 @@ int vectorDotProduct(const std::vector<int> &vec_contents_f,
return x;
}
-bool matrixMultiplication() { return false; }
+bool matrixMultiplication()
+{
+ return false;
+}
// TESTS
diff --git a/test/windowtest.cpp b/test/windowtest.cpp
index 73e2f82c..22760c21 100644
--- a/test/windowtest.cpp
+++ b/test/windowtest.cpp
@@ -10,7 +10,10 @@
#include "yage.hpp"
-TEST(Window, Open) { ASSERT_TRUE(true); }
+TEST(Window, Open)
+{
+ ASSERT_TRUE(true);
+}
int main(int argc, char **argv)
{
diff --git a/test/yagetest.cpp b/test/yagetest.cpp
index 90d915a8..17ecf85a 100644
--- a/test/yagetest.cpp
+++ b/test/yagetest.cpp
@@ -10,7 +10,10 @@
#include "yage.hpp"
-TEST(YAGE, InitQuit) { ASSERT_TRUE(true); }
+TEST(YAGE, InitQuit)
+{
+ ASSERT_TRUE(true);
+}
int main(int argc, char **argv)
{