Google\Cloud\Tests\Logging\LoggingClientTest::testGetsSinksWithNoResults PHP Méthode

testGetsSinksWithNoResults() public méthode

    public function testGetsSinksWithNoResults()
    {
        $this->connection->listSinks(Argument::any())->willReturn([])->shouldBeCalledTimes(1);
        $this->client->setConnection($this->connection->reveal());
        $sinks = iterator_to_array($this->client->sinks());
        $this->assertEmpty($sinks);
    }