From f96af48ad82f1ddfab1402ca5c6eafd82af2b217 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Thu, 24 Aug 2017 01:09:12 +0100 Subject: Adding rules to clang-format. --- test/matrixtest.cpp | 5 ++++- test/windowtest.cpp | 5 ++++- test/yagetest.cpp | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) (limited to 'test') 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 &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) { -- cgit