eZ\Publish\Core\Repository\Tests\Service\Integration\LocationBase::testNewLocationUpdateStruct PHP Method

testNewLocationUpdateStruct() public method

Test creating new LocationUpdateStruct.
    public function testNewLocationUpdateStruct()
    {
        $locationService = $this->repository->getLocationService();
        $locationUpdateStruct = $locationService->newLocationUpdateStruct();
        self::assertInstanceOf('\\eZ\\Publish\\API\\Repository\\Values\\Content\\LocationUpdateStruct', $locationUpdateStruct);
        $this->assertPropertiesCorrect(array('priority' => null, 'remoteId' => null, 'sortField' => null, 'sortOrder' => null), $locationUpdateStruct);
    }