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

testDelete() public method

public testDelete ( )
    public function testDelete()
    {
        $snippet = $this->snippetFromMethod(Table::class, 'delete');
        $snippet->addLocal('table', $this->table);
        $this->connection->deleteTable(Argument::any())->shouldBeCalled();
        $this->table->setConnection($this->connection->reveal());
        $snippet->invoke();
    }