Git Product home page Git Product logo

Comments (5)

kenjis avatar kenjis commented on May 23, 2024

Because get_instance() is not called at that time.

$ composer create-project kenjis/codeigniter-composer-installer codeigniter
  - Installing codeigniter/framework (3.0.2)
$ cd codeigniter
$ composer require kenjis/ci-phpunit-test --dev
  - Installing kenjis/ci-phpunit-test (v0.8.2)
$ php vendor/kenjis/ci-phpunit-test/install.php
$ cd application/tests/
$ phpunit
PHPUnit 4.7.7 by Sebastian Bergmann and contributors.

...

Time: 809 ms, Memory: 5.50Mb

OK (3 tests, 3 assertions)

from ci-phpunit-test.

StefanSx avatar StefanSx commented on May 23, 2024

Sorry, my fault.

I didn't create the config for the testing environment.
That's why it jumped into the set_status_header() function in application/tests/_ci_phpunit_test/replacing/core/Common.php

from ci-phpunit-test.

kenjis avatar kenjis commented on May 23, 2024

You didn't have config/config.php nor config/testing/config.php?

from ci-phpunit-test.

StefanSx avatar StefanSx commented on May 23, 2024

Yes, none of them was there.

from ci-phpunit-test.

sofiangrh avatar sofiangrh commented on May 23, 2024

I also have same issue here, when I run test with PHPUnit in model file test I got this error:

1) Manageuser_model_test::test_get_all_user
Error: Call to undefined function get_instance()

C:\xampp\htdocs\simaungv4\application\tests\models\Manageuser_model_test.php:7

and here's my model test file:

<?php

use PHPUnit\Framework\TestCase;

class Manageuser_model_test extends TestCase {
    public function setup():void {
        $this->CI =& get_instance();
        $this->CI->load->model('manageuser_model');
        $this->obj = $this->CI->Manageuser_model;
    }

    public function test_get_all_user() {
  		$expected = [
  			1 => 'Fakultas',
  			2 => 'UPT',
  			3 => 'Prodi',
  		];
  		$user = $this->obj->get_all_user();
  		foreach ($user as $user_name) {
  			$this->assertEquals($expected[$user_name->user_id], $user_name->username);
  		}
	  }
}

I'm using PHPUnit version 8.5.0. I'm trying using the different version of PHPUnit, but still got the same error. could you help me the way hot to fix this?

Thanks in advance..

from ci-phpunit-test.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.