aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-08-02 09:53:13 +0100
committerGitHub <noreply@github.com>2017-08-02 09:53:13 +0100
commit30461c89fd53e14bb9f5a83eaf6d72040931b62a (patch)
tree3303e22526d346030fa78dabcebdcfd0a3f11f1f /test
parenta1fc39d49e442fcc756091ee028ff33bdd9c518a (diff)
parent489c3550c3694ffc5f67c1527a3f021a01c8bbfc (diff)
downloadYAGE-30461c89fd53e14bb9f5a83eaf6d72040931b62a.tar.gz
YAGE-30461c89fd53e14bb9f5a83eaf6d72040931b62a.zip
Merge pull request #2 from ymherklotz/develop
Merging
Diffstat (limited to 'test')
-rw-r--r--test/matrixtest.cpp32
-rw-r--r--test/rigidbodytest.cpp8
-rw-r--r--test/testbench.cpp32
-rw-r--r--test/testbench.hpp9
4 files changed, 23 insertions, 58 deletions
diff --git a/test/matrixtest.cpp b/test/matrixtest.cpp
index 50a0b29c..c84118df 100644
--- a/test/matrixtest.cpp
+++ b/test/matrixtest.cpp
@@ -1,31 +1,9 @@
-/* ------------------------------------------------------------------------------
- * MIT License
+/* ----------------------------------------------------------------------------
+ * matrixtest.cpp
*
- * Copyright (c) 2017 Yann Herklotz Grave
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in all
- * copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- * ------------------------------------------------------------------------------
- * Description:
- *
- * Tests the math class using different tests to see if matrix operations work
- * correctly.
- * ------------------------------------------------------------------------------
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
*/
#include "Math/math.hpp"
diff --git a/test/rigidbodytest.cpp b/test/rigidbodytest.cpp
index 11efd20d..f3ad61f3 100644
--- a/test/rigidbodytest.cpp
+++ b/test/rigidbodytest.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * rigidbodytest.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#include "Physics/particlebody.hpp"
#include <iostream>
diff --git a/test/testbench.cpp b/test/testbench.cpp
index c83d20b7..eb09a82d 100644
--- a/test/testbench.cpp
+++ b/test/testbench.cpp
@@ -1,31 +1,9 @@
-/* ------------------------------------------------------------------------------
- * MIT License
+/* ----------------------------------------------------------------------------
+ * testbench.cpp
*
- * Copyright (c) 2017 Yann Herklotz Grave
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in all
- * copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- * ------------------------------------------------------------------------------
- * Description:
- *
- * Tests the math class using different tests to see if matrix operations work
- * correctly.
- * ------------------------------------------------------------------------------
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
*/
#include "testbench.hpp"
diff --git a/test/testbench.hpp b/test/testbench.hpp
index ba3a3212..a5b8853d 100644
--- a/test/testbench.hpp
+++ b/test/testbench.hpp
@@ -1,8 +1,9 @@
-/*
- * created 22-06-17 by Yann Herklotz
- *
- * Test bench to test different functions in the yage library
+/* ----------------------------------------------------------------------------
+ * testbench.hpp
*
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
*/
#ifndef TEST_BENCH_HPP