Git Product home page Git Product logo

Comments (7)

kenjis avatar kenjis commented on May 24, 2024 1

You're welcome.

Tests always run on testing environment.

This was undocumented.

I added documentation:
https://github.com/kenjis/ci-phpunit-test/blob/master/docs/HowToWriteTests.md#testing-environment

from ci-phpunit-test.

kenjis avatar kenjis commented on May 24, 2024

I can't reproduce it.

Did you change your folder structure?
If you changed, you have to fix three paths in tests/Bootstrap.php:
https://github.com/kenjis/ci-phpunit-test/tree/15ac4a283279e5b5d6867b96afd80e448373d989#step-2

from ci-phpunit-test.

kenjis avatar kenjis commented on May 24, 2024

What I did:

$ unzip CodeIgniter-3.0.0.zip
$ unzip ci-phpunit-test-0.3.0.zip
$ mv ci-phpunit-test-0.3.0/application/tests/ CodeIgniter-3.0.0/application/
$ cd CodeIgniter-3.0.0/application/tests/
$ phpunit
...

Time: 683 ms, Memory: 4.25Mb

OK (3 tests, 4 assertions)

Generating code coverage report in Clover XML format ... done

Generating code coverage report in HTML format ... done

from ci-phpunit-test.

jeffcao avatar jeffcao commented on May 24, 2024

@kenjis
Thanks for your answer.

I know the why for this issue. Because i moved the config.php from application/config to application/config/development.
Now i move config.php to application/config, the unit tests all can run correctly.

May be i should know how to let tests run with application/config/development/config.php. Would you like tell me this?
Thanks.

from ci-phpunit-test.

kenjis avatar kenjis commented on May 24, 2024

Tests always run on testing environment.
So you have to create application/config/testing/config.php.

See http://www.codeigniter.com/user_guide/libraries/config.html#environments if you don't know well about config files and environments.

from ci-phpunit-test.

jeffcao avatar jeffcao commented on May 24, 2024

@kenjis
^_^
Yes, i have got these knowledges.
Thanks.

from ci-phpunit-test.

antelove19 avatar antelove19 commented on May 24, 2024

you can using dynamic environment

 switch ( $_SERVER['SERVER_NAME'] )
 {
 	case 'localhost':
 		$env = 'development';
 		break;
	case 'testing.com':
		$env = 'testing';
		break;
 	case 'yourdomain.com':
 		$env = 'production';
 		break;
 	default:
 		$env = 'development';
 		break;
 }

define( 'ENVIRONMENT', isset($_SERVER['CI_ENV']) ? $_SERVER['CI_ENV'] : $env );

application/config/development/config.php // $config['base_url'] = "http://localhost/your_project";
application/config/testing/config.php
application/config/production/config.php // $config['base_url'] = "http://{$_SERVER['HTTP_HOST']}";

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.