Example #1
0
        // [TestMethod]
        public void TestRunShouldInvokeEventHandlers()
        {
            // TODO fix this dummy test with asserts
            var simulator = new TestRunSimulator(this.logger);

            simulator.Run();
        }
Example #2
0
        // [TestMethod]
        public void TestRunCompleteShouldCreateAResultFile()
        {
            var logger = new TestableTestLogger();

            using (var simulator = new TestRunSimulator(logger))
            {
                simulator.Run();
            }
        }