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()
24
24
}
25
25
26
26
/** @test */
27
- public function it_has_required_constructor_arguments ()
27
+ public function it_can_not_be_initiated_without_constructor_arguments ()
28
28
{
29
29
$ this ->expectException (PHPUnit_Framework_Error::class);
30
30
return new Command ();
31
31
}
32
32
33
33
/** @test */
34
- public function required_constructor_argument_is_command ()
34
+ public function only_one_constructor_argument_is_required ()
35
35
{
36
36
$ command = new Command ('test ' );
37
37
$ this ->assertInstanceOf (Command::class, $ command );
@@ -72,7 +72,7 @@ public function run_in_background_supports_after_command()
72
72
}
73
73
74
74
/** @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 ()
76
76
{
77
77
$ this ->shouldRecieveExecCallOnceWith ('(before && php artisan test:command && after) > /dev/null 2>&1 & ' );
78
78
You can’t perform that action at this time.
0 commit comments