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

testUpdateLocationThrowsInvalidArgumentException() public method

Test updating location throwing InvalidArgumentException.
    public function testUpdateLocationThrowsInvalidArgumentException()
    {
        $locationService = $this->repository->getLocationService();
        $location = $locationService->loadLocation(5);
        $locationUpdateStruct = $locationService->newLocationUpdateStruct();
        $locationUpdateStruct->remoteId = '769380b7aa94541679167eab817ca893';
        $locationService->updateLocation($location, $locationUpdateStruct);
    }