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

testValueObjectArrayEntityValue() public method

    public function testValueObjectArrayEntityValue()
    {
        $entity = $this->mapper->valueObject(['key1' => 'val1', 'key2' => 'val2']);
        $this->assertEquals('entityValue', key($entity));
        $this->assertEquals('val1', $entity['entityValue']['properties']['key1']['stringValue']);
        $this->assertEquals('val2', $entity['entityValue']['properties']['key2']['stringValue']);
    }