diff --git a/tests/Functional/AppCommandTest.php b/tests/Functional/AppCommandTest.php deleted file mode 100644 index 9e596c224148..000000000000 --- a/tests/Functional/AppCommandTest.php +++ /dev/null @@ -1,39 +0,0 @@ - - * @author James Brooks - */ -class AppCommandTest extends AbstractTestCase -{ - public function testInstall() - { - $this->assertSame(0, $this->app->make(Kernel::class)->call('app:install')); - } - - public function testReset() - { - $this->assertSame(0, $this->app->make(Kernel::class)->call('app:reset')); - } - - public function testUpdate() - { - $this->assertSame(0, $this->app->make(Kernel::class)->call('app:reset')); - } -}