Google\Cloud\Tests\Logging\LoggingClientTest::testGetsSinksWithNoResults PHP Method

testGetsSinksWithNoResults() public method

    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);
    }