Testing¶
- Feature
- A larger portion of the code, how several objects
- Unit
- Small functionalities (e.g. a function)
Config¶
- Config:
phpunit.xml
- Need to
config:cache
after editing
- Need to
Usage¶
- Create
// Create a feature test
php artisan make:test XXXTest
// Create a unit test
php artisan make:test XXXTest --unit
A test would looks like:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
|
- Run the test
php artisan test [--group name] [/path/to/test.php]
Danger
A facade root has not been set
when use things related to the application
<?php
namespace Tests\Unit;
use Tests\TestCase;
class XXXTest extends TestCase
{
}
Danger
The test function name must be testXXX()
or you need to add comment @test
above the function
/** @test */
public function it_tests_something()
{
...
}