eZ\Publish\Core\Repository\Tests\Service\Integration\ContentTypeBase::testUpdateContentTypeGroupStructValues PHP Метод

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

Test for the updateContentTypeGroup() method.
    public function testUpdateContentTypeGroupStructValues(array $data)
    {
        $originalGroup = $data['originalGroup'];
        $updateStruct = $data['updateStruct'];
        $updatedGroup = $data['updatedGroup'];
        $notImplemented = array('mainLanguageCode', 'names', 'descriptions');
        $expectedValues = array('identifier' => $updateStruct->identifier, 'creationDate' => $originalGroup->creationDate, 'modificationDate' => $updateStruct->modificationDate, 'creatorId' => $originalGroup->creatorId, 'modifierId' => $updateStruct->modifierId);
        $this->assertPropertiesCorrect($expectedValues, $updatedGroup, $notImplemented);
    }
ContentTypeBase