eZ\Publish\Core\Repository\Tests\Service\Integration\ContentBase::testNewContentCreateStructValues PHP Method

testNewContentCreateStructValues() public method

Test for the newContentCreateStruct() method.
    public function testNewContentCreateStructValues(array $data)
    {
        $contentType = $data['contentType'];
        $contentCreateStruct = $data['contentCreateStruct'];
        $expectedValues = array('fields' => array(), 'contentType' => $contentType, 'sectionId' => null, 'ownerId' => null, 'alwaysAvailable' => null, 'remoteId' => null, 'mainLanguageCode' => 'eng-GB', 'modificationDate' => null);
        $this->assertPropertiesCorrect($expectedValues, $contentCreateStruct);
    }
ContentBase