codeigniter-phpunit icon indicating copy to clipboard operation
codeigniter-phpunit copied to clipboard

Hack to make CodeIgniter work with PHPUnit.

Results 8 codeigniter-phpunit issues
Sort by recently updated
recently updated
newest added

Hi all, I'm very new in codeigniter and PHP world, anyway I installed MangoPay sdk by composer, and when I try to connect i received this error: **Message: Class 'MangoPay\MangoPayApi'...

Hi @fmalk My legacy project use Codeigniter 2.2, i want to add some unit test, i need unit test for save my life hehe. so in my code i using...

Hello. Maybe in documentation / read.me there should be some information about possibility to override CI_Uri class. That if somebody **doesn't want to touch system files** (hacking) he can easily...

Hi, I am using codeigniter version 2.2.1. I have followed the exact step for my project but it is giving PHP **Fatal error: Cannot redeclare __autoload()** . Please let me...

Hi, I am trying to test a controller that has the form_validation library. When I run phpunit it gives me the following error message ) MyTestController::testHome Error: Call to a...

I want to reuse some model, so I wrote the code like this ```

question

I have this function in Welcome Controller ``` public function format_tanggal($tanggal) { return date('d-m-Y',strtotime($tanggal)); } ``` But when i write test in WelcomeTest ``` public function testFormatTanggal(){ $this->requireController('Welcome'); $this->CIC =...

enhancement
question