Google\Cloud\Tests\Datastore\TransactionTest::testUpsertBatch PHP Method

testUpsertBatch() public method

public testUpsertBatch ( )
    public function testUpsertBatch()
    {
        $e = $this->prophesize(Entity::class);
        $this->operation->mutation(Argument::exact('upsert'), Argument::type(Entity::class), Argument::exact(Entity::class, null))->shouldBeCalled()->willReturn(null);
        $this->operation->commit()->shouldNotBeCalled();
        $this->transaction->setOperation($this->operation->reveal());
        $this->transaction->upsertBatch([$e->reveal()]);
    }