Google\Cloud\Tests\Datastore\EntityTest::testGet PHP Method

testGet() public method

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