summaryrefslogtreecommitdiffstatshomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar cweiske2009-10-03 23:25:07 +0000
committerGravatar cweiske2009-10-03 23:25:07 +0000
commitdfeeae38a9feaa30f5dec50a09476c03f431a196 (patch)
tree6fe9c5a052c2d08b62a9e4dfc7832b4bdf95c9bd /tests
parentde031f043f9918424b26534d233df90b7d5c42f9 (diff)
downloadscuttle-dfeeae38a9feaa30f5dec50a09476c03f431a196.tar.gz
scuttle-dfeeae38a9feaa30f5dec50a09476c03f431a196.zip
get rid of headers-already-sent-errors when running unit tests on cli
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@390 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'tests')
-rw-r--r--tests/AllTests.php1
-rw-r--r--tests/prepare.php7
2 files changed, 8 insertions, 0 deletions
diff --git a/tests/AllTests.php b/tests/AllTests.php
index 1526da8..db3ebfe 100644
--- a/tests/AllTests.php
+++ b/tests/AllTests.php
@@ -15,6 +15,7 @@ if (!defined('PHPUnit_MAIN_METHOD')) {
define('PHPUnit_MAIN_METHOD', 'AllTests::main');
}
+require_once 'prepare.php';
require_once 'PHPUnit/Framework/TestSuite.php';
class AllTests extends PHPUnit_Framework_TestSuite
diff --git a/tests/prepare.php b/tests/prepare.php
new file mode 100644
index 0000000..50304c2
--- /dev/null
+++ b/tests/prepare.php
@@ -0,0 +1,7 @@
+<?php
+/**
+ * Prepare the application for unit testing
+ */
+$_SERVER['HTTP_HOST'] = 'http://localhost/';
+define('UNIT_TEST_MODE', true);
+?> \ No newline at end of file