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

testResponseToPropertiesDoubleValue() public method

    public function testResponseToPropertiesDoubleValue()
    {
        $data = ['foo' => ['doubleValue' => 1.1]];
        $res = $this->mapper->responseToEntityProperties($data)['properties'];
        $this->assertEquals(1.1, $res['foo']);
    }