aboutsummaryrefslogtreecommitdiffstats
path: root/tests/structtest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/structtest.cpp')
-rw-r--r--tests/structtest.cpp14
1 files changed, 11 insertions, 3 deletions
diff --git a/tests/structtest.cpp b/tests/structtest.cpp
index 13a2c591..99752abb 100644
--- a/tests/structtest.cpp
+++ b/tests/structtest.cpp
@@ -1,8 +1,16 @@
-#include <yage/yage.h>
+/** ---------------------------------------------------------------------------
+ * @file: structtest.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>
-#include <ctime>
#include <cstdlib>
+#include <ctime>
TEST(StructTest, ColourDefault)
{
@@ -15,7 +23,7 @@ TEST(StructTest, ColourDefault)
TEST(StructTest, ColourConstructor)
{
- int r = rand()%255, g = rand()%255, b = rand() % 255, a = rand() % 255;
+ int r = rand() % 255, g = rand() % 255, b = rand() % 255, a = rand() % 255;
yage::Colour c(r, g, b, a);
ASSERT_EQ(c.r, r);