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

testResponseToExcludedProperties() public method

    public function testResponseToExcludedProperties()
    {
        $data = ['foo' => ['stringValue' => 'bar', 'excludeFromIndexes' => true], 'dubs' => ['doubleValue' => 1.1]];
        $res = $this->mapper->responseToEntityProperties($data)['excludes'];
        $res = $this->assertEquals(['foo'], $res);
    }