Exemple #1
0
        protected override void ExecuteTests(object test, Feature feature)
        {
            MockRepository mockRepository = SetupTests(feature);

            NUnitTestExecutor.ExecuteNUnitTests(test, ex => true);

            mockRepository.VerifyAll();
        }
Exemple #2
0
 protected override void ExecuteTests(object test, Feature feature)
 {
     NUnitTestExecutor.ExecuteNUnitTests(test,
                                         delegate(Exception exception)
     {
         Assert.IsInstanceOf(typeof(InconclusiveException), exception);
         return(true);
     });
 }