TDDはまずテストを書くべきだと主張しています。私はサービスを書くことを望んでいる、私はまだ何も持っていない場合、私はサービスのテストを書き始めるのですか?最初のテストは何でしょうか?サービスをインスタンス化して例外を取得しようとしましたか?存在しないコードをテストしてください
PHP Laravelベースの例:
class ServiceTest extends TestCase
{
public function testServiceExists()
{
$service = App::make('grid');
}
}
結果:
PHPUnit 5.5.4 by Sebastian Bergmann and contributors.
E 1 /1 (100%)
Time: 123 ms, Memory: 14.00MB
There was 1 error:
1) ServiceTest::testServiceExists ReflectionException: Class grid does not exist
/home/supertrall/domains/md.local/laravel/vendor/laravel/framework/src/Illuminate/Container/Container.php:749 /home/supertrall/domains/md.local/laravel/vendor/laravel/framework/src/Illuminate/Container/Container.php:644 /home/supertrall/domains/md.local/laravel/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:709 /home/supertrall/domains/md.local/laravel/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php:237 /home/supertrall/domains/md.local/laravel/tests/Grid/ServiceTest.php:20
ERRORS! Tests: 1, Assertions: 0, Errors: 1.