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

testValueExcludeFromIndexes() public method

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