public void Execute_CopiesDataFromInputSourceToOutputSink() { Interactive interactive = new Interactive(); interactive.Configure(XDocument.Parse(pluginConfig)); Assert.NotEqual(MockSource.Source, MockSink.Sink); interactive.Execute(); Assert.Equal(MockSource.Source, MockSink.Sink); }