We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efff7a4 commit 64a2a53Copy full SHA for 64a2a53
tests/classes/Artisan/CommandTest.php
@@ -24,14 +24,14 @@ protected function setUp()
24
}
25
26
/** @test */
27
- public function it_has_required_arguments()
+ public function it_has_required_constructor_arguments()
28
{
29
$this->expectException(PHPUnit_Framework_Error::class);
30
return new Command();
31
32
33
34
- public function it_has_one_required_argument_which_is_command()
+ public function it_has_one_required_constructor_argument_which_is_command()
35
36
$command = new Command('test');
37
$this->assertInstanceOf(Command::class, $command);
0 commit comments