Local object deleted and the corresponding remote object is renamed or moved.
Inheritance: AbstractEnhancedSolver
 public void SetUp() {
     this.session = new Mock<ISession>();
     this.session.SetupTypeSystem();
     this.storage = new Mock<IMetaDataStorage>();
     this.remoteObject = new Mock<IObjectId>(MockBehavior.Strict);
     this.remoteObject.Setup(o => o.Id).Returns(RemoteId);
     this.deletedFsObject = new Mock<IFileSystemInfo>();
     this.mappedObject = Mock.Of<IMappedObject>(o => o.RemoteObjectId == RemoteId);
     this.underTest = new LocalObjectDeletedRemoteObjectRenamedOrMoved(
         this.session.Object,
         this.storage.Object);
 }