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

testResponseToPropertiesArrayValue() public method

    public function testResponseToPropertiesArrayValue()
    {
        $arr = [['stringValue' => 'a'], ['stringValue' => 'b'], ['stringValue' => 'c']];
        $data = ['foo' => ['arrayValue' => ['values' => $arr]]];
        $res = $this->mapper->responseToEntityProperties($data)['properties'];
        $this->assertEquals(['a', 'b', 'c'], $res['foo']);
    }