Google\Cloud\Tests\Datastore\EntityTest::testGet PHP 메소드

testGet() 공개 메소드

public testGet ( )
    public function testGet()
    {
        $data = ['foo' => 'bar'];
        $entity = new Entity($this->key, $data);
        $this->assertEquals($data, $entity->get());
    }