Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fukata/ciunit-for-ci2
CIUnit for CodeIgniter 2.x
https://github.com/fukata/ciunit-for-ci2
Last synced: 29 days ago
JSON representation
CIUnit for CodeIgniter 2.x
- Host: GitHub
- URL: https://github.com/fukata/ciunit-for-ci2
- Owner: fukata
- Created: 2011-06-19T02:20:37.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-07-29T07:41:18.000Z (over 11 years ago)
- Last Synced: 2024-10-10T12:25:33.056Z (about 1 month ago)
- Language: PHP
- Homepage:
- Size: 108 KB
- Stars: 17
- Watchers: 7
- Forks: 11
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## What's this
[CIUnit](https://bitbucket.org/rafsoaken/ciunit) for CodeIgniter 2.x## Installation
## Use install.sh
./tools/install.sh [CI2 Project Path]
## Manual
### Copy CIUnit Files
cp -R CIUnit-for-CI2/application [CI2 Project Path]/
cp -R CIUnit-for-CI2/tests [CI2 Project Path]/
### Change Database Config
vi [CI2 Project Path]/application/config/database.php$active_group = 'default';
+ if (defined('CIUnit_Version')) {
+ $active_group .= '_test';
+ }
$active_record = TRUE;## Run Tests
### AllTests
cd [CI2 Project Path]/tests
phpunit### UnitTest
cd [CI2 Project Path]/tests
phpunit --no-configuration --bootstrap ../application/third_party/CIUnit/bootstrap_phpunit.php [Directory or PHP file path]## Eclipse Settings
* [External Tools](http://fukata.org/2011/06/19/codeigniter2-tips-ciunit-for-ci2-on-eclipse/)CIUnit AllTests
![CIUnit AllTests](http://farm3.static.flickr.com/2589/5847466967_be828bd800.jpg)
CIUnit UnitTest
![CIUnit UnitTest](http://farm4.static.flickr.com/3452/5848025028_d5ce7618cf.jpg)