Every test needs a test case, or class that your tests extend. CodeIgniter 4 provides a few that you may use directly:
CodeIgniter\Test\CIUnitTestCase
- for basic tests with no other service needsCodeIgniter\Test\CIDatabaseTestCase
- for tests that need database access
ProjectTests also provides some examples:
ProjectTests\Support\DatabaseTestCase
- for database tests, pre-configured for migrations, seeds, and models from tests/_supportProjectTests\Support\SessionTestCase
- for session tests, pre-configured with a mock session driver
Most of the time you will want to write your own test cases to hold functions and services common to your test suites.
All tests go in the tests/ directory. ProjectTests provides some generic
subfolders for you (unit, session, and database) - but feel free to make your
own. Each test file is a class that extends a Test Case (see above) and contains methods
for the individual tests. These method names must start with the word "test" and should
have descriptive names for precisely what they are testing:
testUserCanModifyFile()
testOutputColorMatchesInput()
testIsLoggedInFailsWithInvalidUser()
Writing tests is an art, and there are many resources available to help learn how. Review the links above and always pay attention to your Code Coverage.
ProjectTests provides examples for migrating, seeding, and testing against a mock or live1 database. The example files can be modified or replaced with your own:
- tests/_support/Database/Migrations/create_test_tables.php
- tests/_support/Database/Seeds/ExampleSeeder.php
- tests/_support/Models/ExampleModel.php
Be sure to modify the test case (or create your own) to point to your seed and migrations
and include any additional steps to be run before tests in the setUp()
method:
- tests/_support/DatabaseTestCase.php
1 Note: If you are using database tests that require a live database connection you will need to rename phpunit.xml.dist to phpunit.xml, uncomment the database configuration lines and add your connection details. Prevent phpunit.xml from being tracked in your repo by adding it to .gitignore.
Similar to database testing, ProjectTests provides a test case pre-configured with the mock session class to make testing sessions easier:
- tests/_support/SessionTestCase.php