aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-11-16 22:01:32 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-11-16 22:01:32 +0000
commit994e65e5a80c814c2ffe6da66a356228e37f35f4 (patch)
treebc1b09ff6781df3f2bd0cd6ee7c23b8668e5ce86 /tests
parent714ed292b37a0d9baee69186bca38cf0f0c77c89 (diff)
downloadYAGE-994e65e5a80c814c2ffe6da66a356228e37f35f4.tar.gz
YAGE-994e65e5a80c814c2ffe6da66a356228e37f35f4.zip
Fixing license headers
Diffstat (limited to 'tests')
-rw-r--r--tests/activetest.cpp8
-rw-r--r--tests/logtest.cpp6
-rw-r--r--tests/matrixtest.cpp6
-rw-r--r--tests/particlebodytest.cpp8
-rw-r--r--tests/rendertest.cpp8
-rw-r--r--tests/rendertest.h8
-rw-r--r--tests/simplegame.cpp8
-rw-r--r--tests/spritesheettest.cpp2
-rw-r--r--tests/syncqueuetest.cpp8
-rw-r--r--tests/threadtest.cpp8
-rw-r--r--tests/vector3test.cpp8
-rw-r--r--tests/vector4test.cpp8
-rw-r--r--tests/windowtest.cpp2
-rw-r--r--tests/yagetest.cpp6
14 files changed, 79 insertions, 15 deletions
diff --git a/tests/activetest.cpp b/tests/activetest.cpp
index 74e72f54..cebf90d3 100644
--- a/tests/activetest.cpp
+++ b/tests/activetest.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * activetest.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
+ * MIT License, see LICENSE file for more details.
+ * ----------------------------------------------------------------------------
+ */
+
#include <yage.h>
#include <iostream>
diff --git a/tests/logtest.cpp b/tests/logtest.cpp
index 9536f00a..74a71057 100644
--- a/tests/logtest.cpp
+++ b/tests/logtest.cpp
@@ -1,11 +1,13 @@
/* ----------------------------------------------------------------------------
* logtest.cpp
*
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
- * See file LICENSE for more details
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
+ * MIT License, see LICENSE file for more details.
* ----------------------------------------------------------------------------
*/
+
+
#include <yage.h>
#include <iostream>
diff --git a/tests/matrixtest.cpp b/tests/matrixtest.cpp
index 58786bae..be2ca186 100644
--- a/tests/matrixtest.cpp
+++ b/tests/matrixtest.cpp
@@ -1,11 +1,13 @@
/* ----------------------------------------------------------------------------
* matrixtest.cpp
*
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
- * See file LICENSE for more details
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
+ * MIT License, see LICENSE file for more details.
* ----------------------------------------------------------------------------
*/
+
+
#include <gtest/gtest.h>
#include <yage/yage.h>
diff --git a/tests/particlebodytest.cpp b/tests/particlebodytest.cpp
index 41c9a5c9..511e3ef5 100644
--- a/tests/particlebodytest.cpp
+++ b/tests/particlebodytest.cpp
@@ -1,11 +1,13 @@
/* ----------------------------------------------------------------------------
- * rigidbodytest.cpp
+ * particlebodytest.cpp
*
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
- * See file LICENSE for more details
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
+ * MIT License, see LICENSE file for more details.
* ----------------------------------------------------------------------------
*/
+
+
#include <gtest/gtest.h>
#include <yage/yage.h>
diff --git a/tests/rendertest.cpp b/tests/rendertest.cpp
index 5f35b1fc..a0452ab4 100644
--- a/tests/rendertest.cpp
+++ b/tests/rendertest.cpp
@@ -1,11 +1,13 @@
/* ----------------------------------------------------------------------------
- * renderingtest.cpp
+ * rendertest.cpp
*
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
- * See file LICENSE for more details
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
+ * MIT License, see LICENSE file for more details.
* ----------------------------------------------------------------------------
*/
+
+
#include "rendertest.h"
RenderTest::RenderTest(std::string sprite) : sprite_(sprite)
diff --git a/tests/rendertest.h b/tests/rendertest.h
index c239338f..f6ed36c6 100644
--- a/tests/rendertest.h
+++ b/tests/rendertest.h
@@ -1,11 +1,13 @@
/* ----------------------------------------------------------------------------
- * renderingtest.h
+ * rendertest.h
*
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
- * See file LICENSE for more details
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
+ * MIT License, see LICENSE file for more details.
* ----------------------------------------------------------------------------
*/
+
+
#include <string>
class RenderTest
diff --git a/tests/simplegame.cpp b/tests/simplegame.cpp
index 7ca8db77..6bd180ef 100644
--- a/tests/simplegame.cpp
+++ b/tests/simplegame.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * simplegame.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
+ * MIT License, see LICENSE file for more details.
+ * ----------------------------------------------------------------------------
+ */
+
#include <yage.cpp>
using namespace yage;
diff --git a/tests/spritesheettest.cpp b/tests/spritesheettest.cpp
index 47469cf9..2ece61bf 100644
--- a/tests/spritesheettest.cpp
+++ b/tests/spritesheettest.cpp
@@ -6,6 +6,8 @@
* ----------------------------------------------------------------------------
*/
+
+
/** @file */
#include <gtest/gtest.h>
diff --git a/tests/syncqueuetest.cpp b/tests/syncqueuetest.cpp
index 07167dc6..db347854 100644
--- a/tests/syncqueuetest.cpp
+++ b/tests/syncqueuetest.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * syncqueuetest.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
+ * MIT License, see LICENSE file for more details.
+ * ----------------------------------------------------------------------------
+ */
+
#include <yage.h>
#include <atomic>
diff --git a/tests/threadtest.cpp b/tests/threadtest.cpp
index dd1877e5..9ea46e62 100644
--- a/tests/threadtest.cpp
+++ b/tests/threadtest.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * threadtest.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
+ * MIT License, see LICENSE file for more details.
+ * ----------------------------------------------------------------------------
+ */
+
#include <yage.h>
#include <iostream>
diff --git a/tests/vector3test.cpp b/tests/vector3test.cpp
index 0e10458a..daab02af 100644
--- a/tests/vector3test.cpp
+++ b/tests/vector3test.cpp
@@ -6,6 +6,14 @@
* ----------------------------------------------------------------------------
*/
+/* ----------------------------------------------------------------------------
+ * vector3test.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
+ * MIT License, see LICENSE file for more details.
+ * ----------------------------------------------------------------------------
+ */
+
#include <gtest/gtest.h>
#include <yage/yage.h>
diff --git a/tests/vector4test.cpp b/tests/vector4test.cpp
index cc2418f4..fd67d802 100644
--- a/tests/vector4test.cpp
+++ b/tests/vector4test.cpp
@@ -6,6 +6,14 @@
* ----------------------------------------------------------------------------
*/
+/* ----------------------------------------------------------------------------
+ * vector4test.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
+ * MIT License, see LICENSE file for more details.
+ * ----------------------------------------------------------------------------
+ */
+
#include <gtest/gtest.h>
#include <yage/yage.h>
diff --git a/tests/windowtest.cpp b/tests/windowtest.cpp
index 464d4c68..53ff3e9c 100644
--- a/tests/windowtest.cpp
+++ b/tests/windowtest.cpp
@@ -6,6 +6,8 @@
* ----------------------------------------------------------------------------
*/
+
+
#include <yage/yage.h>
#include <gtest/gtest.h>
diff --git a/tests/yagetest.cpp b/tests/yagetest.cpp
index afadc745..2e961327 100644
--- a/tests/yagetest.cpp
+++ b/tests/yagetest.cpp
@@ -1,11 +1,13 @@
/* ----------------------------------------------------------------------------
* yagetest.cpp
*
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
- * See file LICENSE for more details
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
+ * MIT License, see LICENSE file for more details.
* ----------------------------------------------------------------------------
*/
+
+
#include <yage/yage.h>
#include <gtest/gtest.h>