Google\Cloud\Tests\BigQuery\DatasetTest::testDoesExistFalse PHP Method

testDoesExistFalse() public method

public testDoesExistFalse ( )
    public function testDoesExistFalse()
    {
        $this->connection->getDataset(Argument::any())->willThrow(new NotFoundException(null))->shouldBeCalledTimes(1);
        $dataset = $this->getDataset($this->connection);
        $this->assertFalse($dataset->exists());
    }