summaryrefslogtreecommitdiffstats
path: root/tests/phpunit.xml
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2012-06-04 18:14:49 +0200
committerPhil Sturgeon <email@philsturgeon.co.uk>2012-06-04 18:14:49 +0200
commit407fcc9878f795d18b827cbdfa9a3f8d5c0fa822 (patch)
tree25b5f0cafa435f9114961ae3ad8e88c20fd07fa5 /tests/phpunit.xml
parentfc11dcc82cefa7299e6f8c74d0e005ebb6fa568c (diff)
Added a "non-DB" phpunit.xml for local testing
Any developer can use this without having to set up DB's and have PostgreSQL installed by running: phpunit --configuration=tests/phpunit.xml This just skips DB stuff, so code coverage will look lower than it is.
Diffstat (limited to 'tests/phpunit.xml')
-rw-r--r--tests/phpunit.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/phpunit.xml b/tests/phpunit.xml
new file mode 100644
index 000000000..56cb8841c
--- /dev/null
+++ b/tests/phpunit.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<phpunit
+ bootstrap="./Bootstrap.php"
+ colors="true"
+ convertNoticesToExceptions="true"
+ convertWarningsToExceptions="true"
+ stopOnError="false"
+ stopOnFailure="false"
+ stopOnIncomplete="false"
+ stopOnSkipped="false">
+ <testsuites>
+ <testsuite name="CodeIgniter Core Test Suite">
+ <directory suffix="test.php">./codeigniter/core</directory>
+ <directory suffix="test.php">./codeigniter/helpers</directory>
+ <directory suffix="test.php">./codeigniter/libraries</directory>
+ </testsuite>
+ </testsuites>
+ <filters>
+ <blacklist>
+ <directory suffix=".php">PEAR_INSTALL_DIR</directory>
+ <directory suffix=".php">PHP_LIBDIR</directory>
+ </blacklist>
+ </filters>
+</phpunit> \ No newline at end of file