File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,14 +24,14 @@ protected function setUp()
2424 }
2525
2626 /** @test */
27- public function it_has_required_constructor_arguments ()
27+ public function it_can_not_be_initiated_without_constructor_arguments ()
2828 {
2929 $ this ->expectException (PHPUnit_Framework_Error::class);
3030 return new Command ();
3131 }
3232
3333 /** @test */
34- public function required_constructor_argument_is_command ()
34+ public function only_one_constructor_argument_is_required ()
3535 {
3636 $ command = new Command ('test ' );
3737 $ this ->assertInstanceOf (Command::class, $ command );
@@ -72,7 +72,7 @@ public function run_in_background_supports_after_command()
7272 }
7373
7474 /** @test */
75- public function run_in_background_supports_before_and_after_commands_both ()
75+ public function run_in_background_supports_before_and_after_commands_together ()
7676 {
7777 $ this ->shouldRecieveExecCallOnceWith ('(before && php artisan test:command && after) > /dev/null 2>&1 & ' );
7878
You can’t perform that action at this time.
0 commit comments