aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-08-24 01:09:12 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-08-24 01:09:12 +0100
commitf96af48ad82f1ddfab1402ca5c6eafd82af2b217 (patch)
tree0eea4b97d600460f386cb82611ce40d3ccf1bc7d /test
parent5403490b941f7c031bf1aafdb91b1098f69edbf2 (diff)
downloadYAGE-f96af48ad82f1ddfab1402ca5c6eafd82af2b217.tar.gz
YAGE-f96af48ad82f1ddfab1402ca5c6eafd82af2b217.zip
Adding rules to clang-format.
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)
{