kohana/unittest
PHPUnit integration for running unit tests on the Kohana framework
Maintainers
Package info
Type:kohana-module
pkg:composer/kohana/unittest
Requires
- php: >=5.3.3
- composer/installers: ~1.0
- kohana/core: >=3.3
- phpunit/phpunit: 3.7.24 - 4
Requires (Dev)
- kohana/core: 3.3.*@dev
- kohana/koharness: *@dev
Suggests
None
Provides
None
Conflicts
None
Replaces
None
BSD-3-Clause d7cf45cd5570cb6f5bb2f3788862f999382c4d5a
- Kohana Team <team.woop@kohanaframework.org>
This package is auto-updated.
Last update: 2026-05-11 17:35:37 UTC
README
| ver | Stable | Develop |
|---|---|---|
| 3.3.x | 👁 Build Status - 3.3/master |
👁 Build Status - 3.3/develop |
| 3.4.x | 👁 Build Status - 3.4/master |
👁 Build Status - 3.4/develop |
This module integrates PHPUnit with Kohana and is used to run all the core Kohana tests. In most cases you will not need to use this module for testing your own projects. If there are particular helpers provided here that you rely on, that may be a sign that your own code is too closely coupled to the behaviour of the Kohana core classes.
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 and installation
Dependencies are listed in the composer.json - run composer install to install the module and all external requirements.
Note that more usually you will add this module to your own module's composer.json:
{
"require-dev": {
"kohana/unittest": "3.3.*@dev"
}
}
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.
