Google\Cloud\Tests\Datastore\EntityMapperTest::testValueExcludeFromIndexes PHP Метод

testValueExcludeFromIndexes() публичный Метод

    public function testValueExcludeFromIndexes()
    {
        $res = $this->mapper->valueObject('hello', true);
        $this->assertTrue($res['excludeFromIndexes']);
        $res = $this->mapper->valueObject('hello', false);
        $this->assertFalse(isset($res['excludeFromIndexes']));
    }