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

testResponesToPropertiesBooleanValue() public method

    public function testResponesToPropertiesBooleanValue()
    {
        $data = ['foo' => ['booleanValue' => true]];
        $res = $this->mapper->responseToEntityProperties($data)['properties'];
        $this->assertTrue($res['foo']);
    }