Skip to content

Commit 64a2a53

Browse files
committed
IHF: Tests renamed.
1 parent efff7a4 commit 64a2a53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/classes/Artisan/CommandTest.php

Lines changed: 2 additions & 2 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_arguments()
27+
public function it_has_required_constructor_arguments()
2828
{
2929
$this->expectException(PHPUnit_Framework_Error::class);
3030
return new Command();
3131
}
3232

3333
/** @test */
34-
public function it_has_one_required_argument_which_is_command()
34+
public function it_has_one_required_constructor_argument_which_is_command()
3535
{
3636
$command = new Command('test');
3737
$this->assertInstanceOf(Command::class, $command);

0 commit comments

Comments
 (0)