Pantheon\Terminus\UnitTests\Commands\Remote\SSHBaseCommandTest::testUnavailableWithoutSuggestion PHP Method

testUnavailableWithoutSuggestion() public method

    public function testUnavailableWithoutSuggestion()
    {
        //expected info and error messages
        $this->logger->expects($this->once())->method('log')->with($this->equalTo('error'), $this->equalTo('That command is not available via Terminus. ' . 'Please use the native {command} command.'), $this->equalTo(['command' => 'dummy']));
        $output = $this->command->dummyCommand('site.env', ['no-alternative']);
        $this->assertEquals('', $output);
    }