Skip to content

Commit 5ce4093

Browse files
committed
IHF: Tests renamed.
1 parent a7d7805 commit 5ce4093

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/classes/Artisan/CommandTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)