Google\Cloud\Tests\Datastore\EntityMapperTest::testResponseToExcludedProperties PHP 메소드

testResponseToExcludedProperties() 공개 메소드

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