Bolt\Tests\Nut\HelloTest::testRun PHP Method

testRun() public method

public testRun ( )
    public function testRun()
    {
        $app = $this->getApp();
        $command = new Init($app);
        $tester = new CommandTester($command);
        $tester->execute([]);
        $result = $tester->getDisplay();
        $this->assertRegExp('/Welcome to Bolt/', $result);
    }
HelloTest