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 de37f09 commit 864c9b3Copy full SHA for 864c9b3
tests/classes/Artisan/CommandTest.php
@@ -3,7 +3,6 @@
3
namespace Illuminated\Helpers\Artisan;
4
5
use Mockery;
6
-use PHPUnit_Framework_Error;
7
use TestCase;
8
9
class CommandTest extends TestCase
@@ -16,13 +15,6 @@ protected function setUp()
16
15
$phpBinaryMock->shouldReceive('find')->withNoArgs()->once()->andReturn('php');
17
}
18
19
- /** @test */
20
- public function it_can_not_be_initiated_without_constructor_arguments()
21
- {
22
- $this->expectException(PHPUnit_Framework_Error::class);
23
- return new Command();
24
- }
25
-
26
/** @test */
27
public function only_one_constructor_argument_is_required()
28
{
0 commit comments