Download the PHP package cedriclange/ci-phpunit without Composer
On this page you can find all versions of the php package cedriclange/ci-phpunit. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download cedriclange/ci-phpunit
More information about cedriclange/ci-phpunit
Files in cedriclange/ci-phpunit
Download cedriclange/ci-phpunit
More information about cedriclange/ci-phpunit
Files in cedriclange/ci-phpunit
Vendor cedriclange
Package ci-phpunit
Short Description An easier way to use PHPUnit with CodeIgniter 3.x
License MIT
Homepage http://kenjis.github.io/ci-phpunit-test/
Package ci-phpunit
Short Description An easier way to use PHPUnit with CodeIgniter 3.x
License MIT
Homepage http://kenjis.github.io/ci-phpunit-test/
Please rate this library. Is it a good library?
Informations about the package ci-phpunit
phpunit
this repo has been build to solve issues #34 and #311
An easier way to use PHPUnit with CodeIgniter 3.x.
- You don't have to modify CodeIgniter core files at all.
- You can write controller tests easily.
- Nothing is untestable, maybe.
- Well documented.
Requirements
- PHP 5.4.0 or later (5.6 or later is recommended)
- CodeIgniter 3.x
- PHPUnit 4.3 to 7.5 (4.8 or later is recommended)
- If you want to use PHPUnit 8 or later, please use ci-phpunit-test 2.x.
- If you use PHPUnit 6.0, please use ci-phpunit-test v0.14.0 or later.
- You can download old version of
phpunit.phar
from https://phar.phpunit.de/.
Optional
- NetBeans
- Go to Project Properties > Testing > PHPUnit, check Use Custom Test Suite checkbox, and select
application/tests/_ci_phpunit_test/TestSuiteProvider.php
.
- Go to Project Properties > Testing > PHPUnit, check Use Custom Test Suite checkbox, and select
Change Log
See Change Log.
Folder Structure
codeigniter/
├── application/
│ └── tests/
│ ├── _ci_phpunit_test/ ... don't touch! files ci-phpunit-test uses
│ ├── Bootstrap.php ... bootstrap file for PHPUnit
│ ├── DbTestCase.php ... DbTestCase class
│ ├── TestCase.php ... TestCase class
│ ├── controllers/ ... put your controller tests
│ ├── libraries/ ... put your library tests
│ ├── mocks/
│ │ └── libraries/ ... mock libraries
│ ├── models/ ... put your model tests
│ └── phpunit.xml ... config file for PHPUnit
└── vendor/
Installation
Installation via Composer
If you like Composer:
$ cd /path/to/codeigniter/
$ composer require cedriclange/ci-phpunit --dev
And run install.php
:
$ php vendor/cedric/ci-phpunit/install.php --from-composer
- The above command always overwrites existing files.
- You must run it at CodeIgniter project root folder.
- Please remove the line
<exclude>./_ci_phpunit_test/</exclude>
in tests/phpunit.xml. - You can specify your
application
andpublic
folder with option arguments, if you use custom folder paths.
$ php vendor/cedriclange/ci-phpunit/install.php -a <application_dir> -p <public_dir>
- But some paths may be not correct, in that case, please fix them in tests/Bootstrap.php.
Upgrading via Composer
If you like Composer:
$ cd /path/to/codeigniter/
$ composer update cedriclange/ci-phpunit
If you're upgrading from a previous version of ci-phpunit-test
that created
an application/test/_ci_phpunit_test
directory and now want to directly use
ci-phpunit-test
from Composer, you have a couple of additional steps:
- Delete the old test library directory:
rm -rf /path/to/codeigniter/application/tests/_ci_phpunit_test
- Edit the
application/tests/Bootstrap.php
file. At the bottom of the "set the main path constants"
All versions of ci-phpunit with dependencies
PHP Build Version
Package Version
The package cedriclange/ci-phpunit contains the following files
Loading the files please wait ....