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

testGetsInfo() public method

public testGetsInfo ( )
    public function testGetsInfo()
    {
        $datasetInfo = ['friendlyName' => 'A dataset.'];
        $this->connection->getDataset(Argument::any())->shouldNotBeCalled();
        $dataset = $this->getDataset($this->connection, $datasetInfo);
        $this->assertEquals($datasetInfo, $dataset->info());
    }