* @author James Brooks */ class CommandTest extends AbstractTestCase { use DatabaseMigrations; public function testMigrations() { $this->assertSame(0, $this->app->make(Kernel::class)->call('migrate', ['--force' => true])); } public function testSeed() { $this->assertSame(0, $this->app->make(Kernel::class)->call('cachet:seed')); } public function testBeacon() { $this->assertSame(0, $this->app->make(Kernel::class)->call('cachet:beacon')); } }