Google\Cloud\Tests\BigQuery\DatasetTest::testDoesExistTrue PHP 메소드

testDoesExistTrue() 공개 메소드

public testDoesExistTrue ( )
    public function testDoesExistTrue()
    {
        $this->connection->getDataset(Argument::any())->willReturn(['datasetReference' => ['datasetId' => $this->datasetId]])->shouldBeCalledTimes(1);
        $dataset = $this->getDataset($this->connection);
        $this->assertTrue($dataset->exists());
    }