Google\Cloud\Tests\Datastore\EntityMapperTest::testResponseToPropertiesEntityValue PHP Method

testResponseToPropertiesEntityValue() public method

    public function testResponseToPropertiesEntityValue()
    {
        $data = ['foo' => ['entityValue' => ['properties' => ['bar' => ['stringValue' => 'baz']]]]];
        $res = $this->mapper->responseToEntityProperties($data)['properties'];
        $this->assertEquals('baz', $res['foo']['bar']);
    }