Pantheon\Terminus\UnitTests\Commands\AliasesCommandTest::testAliasesPrint PHP Метод

testAliasesPrint() публичный Метод

Tests the aliases command when it is outputting to the screen
public testAliasesPrint ( )
    public function testAliasesPrint()
    {
        $this->logger->expects($this->never())->method('log');
        $out = $this->command->aliases(['print' => true]);
        $this->assertEquals($out, $this->aliases);
    }
AliasesCommandTest