#インストール手順
composer.jsonのrequire-devに以下を追加
composer.json
{
"require-dev": {
"phpunit/phpunit": "4.3.*"
}
}
##インストール!
##インストールされているか確認
PHPUnit 4.3.5 by Sebastian Bergmann.```
##テストを書いてみる
```php:PracticeTest.php
<?php
class PracticeTest extends PHPUnit_Framework_TestCase {
public function testHelloWorld()
{
$message = 'Hello, World!';
$this->assertTrue($message === 'Hello, World!');
}
}
##テスト開始
$ vendor/bin/phpunit tests
PHPUnit 4.3.5 by Sebastian Bergmann.
.
Time: 107 ms, Memory: 2.75Mb
OK (1 test, 1 assertion)