diff options
author | Pascal Kriete <pascal.kriete@ellislab.com> | 2011-04-21 03:44:54 +0200 |
---|---|---|
committer | Pascal Kriete <pascal.kriete@ellislab.com> | 2011-04-21 03:44:54 +0200 |
commit | 69c97a71476e4eaa6c629022fcd4ec7f36d4ec0d (patch) | |
tree | 5cba214cb636df83b41a3aa7f29f9b191c3ab70b /tests/phpunit.xml | |
parent | ba2430b5778b5b2414b94b818354fa1ff7cfd0db (diff) |
Adding early bootstrap ideas for core test suite
Diffstat (limited to 'tests/phpunit.xml')
-rw-r--r-- | tests/phpunit.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/phpunit.xml b/tests/phpunit.xml new file mode 100644 index 000000000..9e5e10d59 --- /dev/null +++ b/tests/phpunit.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<phpunit + bootstrap="Bootstrap.php" + colors="true"> + <testsuites> + <testsuite name="CodeIgniter Core Test Suite"> + <file>codeigniter/Setup_test.php</file> + <directory suffix="test.php">codeigniter/core</directory> + + <!-- We'll worry about these later ... + <directory suffix="test.php">codeigniter/libraries</directory> + <directory suffix="test.php">codeigniter/helpers</directory> + --> + </testsuite> + </testsuites> +</phpunit>
\ No newline at end of file |