Google\Cloud\Tests\Snippets\BigQuery\DatasetTest::testDelete PHP Method

testDelete() public method

public testDelete ( )
    public function testDelete()
    {
        $this->connection->deleteDataset(Argument::any())->shouldBeCalledTimes(1)->willReturn([]);
        $dataset = $this->getDataset($this->connection);
        $snippet = $this->snippetFromMethod(Dataset::class, 'delete');
        $snippet->addLocal('dataset', $dataset);
        $snippet->invoke();
    }