예제 #1
0
        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);
        }