summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-01-18 12:40:48 -0500
committerBen Boeckel <MathStuf@gmail.com>2009-01-18 12:42:19 -0500
commitd617e34915d3c7d3b436d39bfc6ebcc32f363360 (patch)
tree118900c925c0096c5b2c96c457dc65237266e681
parent17f7b4abb480364fb5c2dcfacd29e0930fe129bc (diff)
downloadsigen-d617e34915d3c7d3b436d39bfc6ebcc32f363360.tar.gz
sigen-d617e34915d3c7d3b436d39bfc6ebcc32f363360.tar.xz
sigen-d617e34915d3c7d3b436d39bfc6ebcc32f363360.zip
Cleaned up sigcore test includes
-rw-r--r--sigcore/test/TestFraction.cpp5
-rw-r--r--sigcore/test/TestFraction.h6
-rw-r--r--sigcore/test/TestHat.cpp5
-rw-r--r--sigcore/test/TestHat.h6
-rw-r--r--sigcore/test/TestMatrix.cpp5
-rw-r--r--sigcore/test/TestMatrix.h6
-rw-r--r--sigcore/test/TestRange.cpp5
-rw-r--r--sigcore/test/TestRange.h6
-rw-r--r--sigcore/test/TestScript.cpp5
-rw-r--r--sigcore/test/TestScript.h6
10 files changed, 35 insertions, 20 deletions
diff --git a/sigcore/test/TestFraction.cpp b/sigcore/test/TestFraction.cpp
index 5562c630..89685cd2 100644
--- a/sigcore/test/TestFraction.cpp
+++ b/sigcore/test/TestFraction.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2008-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -18,6 +18,9 @@
// Header include
#include "TestFraction.h"
+// Sigcore includes
+#include "../Fraction.h"
+
// Qt includes
#include <QtTest/QTest>
diff --git a/sigcore/test/TestFraction.h b/sigcore/test/TestFraction.h
index 2eb720a1..2a91eb03 100644
--- a/sigcore/test/TestFraction.h
+++ b/sigcore/test/TestFraction.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2008-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -18,8 +18,8 @@
#ifndef TESTFRACTION
#define TESTFRACTION
-// Sigcore includes
-#include "../Fraction.h"
+// Qt includes
+#include <QtCore/QObject>
class TestFraction : public QObject
{
diff --git a/sigcore/test/TestHat.cpp b/sigcore/test/TestHat.cpp
index 215744a7..a5da9fc8 100644
--- a/sigcore/test/TestHat.cpp
+++ b/sigcore/test/TestHat.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2008-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -18,6 +18,9 @@
// Header include
#include "TestHat.h"
+// Sigcore includes
+#include "../Hat.h"
+
// Qt includes
#include <QtTest/QTest>
diff --git a/sigcore/test/TestHat.h b/sigcore/test/TestHat.h
index b54dc759..aee1c571 100644
--- a/sigcore/test/TestHat.h
+++ b/sigcore/test/TestHat.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2008-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -18,8 +18,8 @@
#ifndef TESTHAT
#define TESTHAT
-// Sigcore includes
-#include "../Hat.h"
+// Qt includes
+#include <QtCore/QObject>
class TestHat : public QObject
{
diff --git a/sigcore/test/TestMatrix.cpp b/sigcore/test/TestMatrix.cpp
index 53cf57ea..5c3af7b9 100644
--- a/sigcore/test/TestMatrix.cpp
+++ b/sigcore/test/TestMatrix.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2008-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -18,6 +18,9 @@
// Header include
#include "TestMatrix.h"
+// Sigcore includes
+#include "../Matrix.h"
+
// Qt includes
#include <QtTest/QTest>
diff --git a/sigcore/test/TestMatrix.h b/sigcore/test/TestMatrix.h
index 7d30d030..81d8e206 100644
--- a/sigcore/test/TestMatrix.h
+++ b/sigcore/test/TestMatrix.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2008-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -18,8 +18,8 @@
#ifndef TESTMATRIX
#define TESTMATRIX
-// Sigcore includes
-#include "../Matrix.h"
+// Qt includes
+#include <QtCore/QObject>
class TestMatrix : public QObject
{
diff --git a/sigcore/test/TestRange.cpp b/sigcore/test/TestRange.cpp
index 4e04e8ec..15e078a4 100644
--- a/sigcore/test/TestRange.cpp
+++ b/sigcore/test/TestRange.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2008-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -18,6 +18,9 @@
// Header include
#include "TestRange.h"
+// Sigcore includes
+#include "../Range.h"
+
// Qt includes
#include <QtTest/QTest>
diff --git a/sigcore/test/TestRange.h b/sigcore/test/TestRange.h
index 301711a5..95515fde 100644
--- a/sigcore/test/TestRange.h
+++ b/sigcore/test/TestRange.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2008-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -18,8 +18,8 @@
#ifndef TESTRANGE
#define TESTRANGE
-// Sigcore includes
-#include "../Range.h"
+// Qt includes
+#include <QtCore/QObject>
class TestRange : public QObject
{
diff --git a/sigcore/test/TestScript.cpp b/sigcore/test/TestScript.cpp
index 5ca18098..ca0f6855 100644
--- a/sigcore/test/TestScript.cpp
+++ b/sigcore/test/TestScript.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2008-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -18,6 +18,9 @@
// Header include
#include "TestScript.h"
+// Sigcore includes
+#include "../Script.h"
+
// KDE includes
#include <kross/core/action.h>
diff --git a/sigcore/test/TestScript.h b/sigcore/test/TestScript.h
index 1f1a48df..050e5a72 100644
--- a/sigcore/test/TestScript.h
+++ b/sigcore/test/TestScript.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2008-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -18,8 +18,8 @@
#ifndef TESTSCRIPT
#define TESTSCRIPT
-// Sigcore includes
-#include "../Script.h"
+// Qt includes
+#include <QtCore/QObject>
// Forward declarations
namespace Kross