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

testUpdate() public method

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