Google\Cloud\Tests\BigQuery\BigQueryClientTest::testCreatesDataset PHP 메소드

testCreatesDataset() 공개 메소드

public testCreatesDataset ( )
    public function testCreatesDataset()
    {
        $this->connection->insertDataset(Argument::any())->willReturn(['datasetReference' => ['datasetId' => $this->datasetId]])->shouldBeCalledTimes(1);
        $this->client->setConnection($this->connection->reveal());
        $dataset = $this->client->createDataset($this->datasetId, ['metadata' => ['friendlyName' => 'A dataset.']]);
        $this->assertInstanceOf(Dataset::class, $dataset);
    }