- https://github.com/nunomaduro/collision
- https://github.com/mikeerickson/phpunit-pretty-result-printer
- Given
- When
- Then
- Run tests:
phpunit
akavendor/bin/phpunit
- Version:
phpunit --version
- Run testsuite only:
phpunit --testsuite testsuitename
- Run method only:
phpunit --filter myTestMethod
- Run group only:
phpunit --group groupname
- Generate coverage report:
phpunit --coverage-html tests/coverage
- https://jeremyfelt.com/2015/07/19/running-phpunit-on-vvv-from-phpstorm-9/
- http://andowebsit.es/blog/noteslog.com/post/how-to-run-wordpress-tests-in-vvv-using-wp-cli-and-phpstorm-8/
- https://www.jetbrains.com/phpstorm/help/enabling-phpunit-support.html
External lib. include path (OS X & Mamp): /Applications/MAMP/Library/bin
- https://laracasts.com/series/phpunit-testing-in-laravel
- https://laracasts.com/series/build-a-laravel-app-with-tdd
- Defined version of PHPUnit:
/usr/local/src/composer/composer.json
- Update:
sudo composer update
- WP Mock: https://github.com/10up/wp_mock
- WP Tests Starter: https://github.com/inpsyde/WP-Tests-Starter
- https://github.com/wp-cli/wp-cli/wiki/Plugin-Unit-Tests
- Install:
bash bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
- Every test-method has to be
public
and a method name starting withtest
or have the@test
notation - Mock: Does not trigger the actual class, calls the interface instead (set expectation on what should happen)
- Spy: Triggers the actual class, verify that it happened afterwards (reverse mock: do the action, verify that it happened)
- Stubs: Returns any kind of hard-coded data (pre-defined values)
- Dummies: Adheres to the contract just to run the test (methods will return
NULL
) - Factory: reusable element for test-related setup (for creating other objects)
- Fixture: also a reusable element for test-related setup
- A test-related method (called fixture) can be a
private
method not starting withtest
- Method visibility can be switched from protected to public via a proxy class
- Skip tests via
$this->markTestSkipped( 'Must be revisited.' )
- Coverage report requires Xdebug extension
- Tests coverage can be documented with
@covers
notation
- Disable exception handling for a test:
$this->withoutExceptionHandling()
- Act as signed-in user:
$this->actingAs(factory('App\User')->create());
Given App\Project
class:
class Project {
public function subscribeTo($name, $user) {
//
}
}
// Create user
$user = factory(User::class)->create();
// Create mock
$this->mock(Project::class, function ($mock) use ($user) {
$mock->shouldReceive()->subscribeTo('members', $user)->once();
});
// Perform action
$this->actingAs($user)->get('/endpoint');
// Create user
$user = factory(User::class)->create();
// Create spy
$spy = $this->spy(Project::class);
// Perform action
$this->actingAs($user)->get('/endpoint');
// Confirm action
$spy->shouldHaveReceived()->subscribeTo('members', $user);