Pantheon\Terminus\UnitTests\Commands\Domain\ListCommandTest::testList PHP Метод

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

Tests the domain:list command
public testList ( )
    public function testList()
    {
        $dummy_info = ['domain' => 'domain', 'zone' => 'zone'];
        $this->domains->expects($this->once())->method('all')->with()->willReturn([$this->domain, $this->domain]);
        $this->logger->expects($this->never())->method('log');
        $this->domain->expects($this->any())->method('serialize')->willReturn($dummy_info);
        $out = $this->command->listDomains('site_name.env_id');
        $this->assertInstanceOf(RowsOfFields::class, $out);
        $this->assertEquals([$dummy_info, $dummy_info], $out->getArrayCopy());
    }
ListCommandTest