Remote object has been moved. => Move the corresponding local object.
Inheritance: AbstractEnhancedSolver
 public void SetUp() {
     this.session = new Mock<ISession>();
     this.session.SetupTypeSystem();
     this.storage = new Mock<IMetaDataStorage>();
     this.matcher = new Mock<IPathMatcher>();
     this.storage.Setup(s => s.Matcher).Returns(this.matcher.Object);
     this.underTest = new RemoteObjectMoved(this.session.Object, this.storage.Object);
 }