Google\Cloud\Tests\Snippets\Datastore\EntityTest::testGet PHP Méthode

testGet() public méthode

public testGet ( )
    public function testGet()
    {
        $snippet = $this->snippetFromMethod(Entity::class, 'get');
        $snippet->addLocal('entity', $this->entity);
        $this->entity['firstName'] = 'Bob';
        $res = $snippet->invoke('data');
        $this->assertEquals(['firstName' => 'Bob'], $res->returnVal());
    }