私はArtisanコマンドをソケットから受信するようにビルドしますが、このコマンドのユニットテストを書きたいと思いますが、そのようなテストを書く方法はわかりません。LaravelのArtisanコマンドをテストする方法5
誰でもどのようにそれを書くのか?テスト
<?php
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class YourCommandTest extends TestCase
{
use DatabaseTransactions;
public function testExample()
{
Artisan::call('your_command', [
'command_parameter_1' => 'value1',
'command_parameter_2' => 'value2',
]);
// If you need result of console output
$resultAsText = Artisan::output();
$this->assertTrue(true);
}
}
http://laravel.com/docs/master/artisan#calling-commands-via-code? – andrewtweber
http://stackoverflow.com/questions/34814954/laravel-5-console-artisan-command-unit-tests – bernie
これは私にとって優れたアプローチでした。https://stackoverflow.com/a/41122816/470749 – Ryan