Local object renamed or moved and the corresponding remote object is deleted.
Inheritance: AbstractEnhancedSolver
 public void SetUp() {
     this.session = new Mock<ISession>();
     this.session.SetupTypeSystem();
     this.storage = new Mock<IMetaDataStorage>();
     this.transmissionStorage = new Mock<IFileTransmissionStorage>();
     this.manager = new Mock<TransmissionManager> { CallBase = true };
     this.secondSolver = new Mock<ISolver>();
     this.underTest = new LocalObjectRenamedOrMovedRemoteObjectDeleted(
         this.session.Object,
         this.storage.Object,
         this.transmissionStorage.Object,
         this.manager.Object,
         this.secondSolver.Object);
 }