This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
redir/includes/kohana/modules/unittest
2013-04-13 16:36:38 +10:00
..
classes Updated to KH 3.3 and improved 2013-04-13 16:36:38 +10:00
config Updated to KH 3.3 and improved 2013-04-13 16:36:38 +10:00
guide/unittest Updated to KH 3.3 and improved 2013-04-13 16:36:38 +10:00
bootstrap_all_modules.php Updated to KH 3.3 and improved 2013-04-13 16:36:38 +10:00
bootstrap.php Updated to KH 3.3 and improved 2013-04-13 16:36:38 +10:00
example.phpunit.xml Init with KH 3.1.3.1 2011-07-20 22:57:07 +10:00
README.markdown Updated to KH 3.3 and improved 2013-04-13 16:36:38 +10:00
tests.php Updated to KH 3.3 and improved 2013-04-13 16:36:38 +10:00

Kohana-PHPUnit integration

This module integrates PHPUnit with Kohana.

If you look through any of the tests provided in this module you'll probably notice all theHorribleCamelCase. I've chosen to do this because it's part of the PHPUnit coding conventions and is required for certain features such as auto documentation.

Requirements

Usage

$ phpunit --bootstrap=modules/unittest/bootstrap.php modules/unittest/tests.php

Alternatively you can use a phpunit.xml to have a more fine grained control over which tests are included and which files are whitelisted.

Make sure you only whitelist the highest files in the cascading filesystem, else you could end up with a lot of "class cannot be redefined" errors.

If you use the tests.php testsuite loader then it will only whitelist the highest files. see config/unittest.php for details on configuring the tests.php whitelist.