public void Test()
        {
            bool failedAny = false;

            foreach (var item in TestingLogic.GetTests("..\\..\\..\\"))
            {
                try
                {
                    item.Value();
                }
                catch (Exception error)
                {
                    Debug.WriteLine(item.Key + " " + error.ToString());
                }

                failedAny = true;
            }

            Assert.IsFalse(failedAny);
        }
Exemplo n.º 2
0
 public Auto_TestingController(ILogger <Auto_TestingController> logger, TestingLogic testingLogic)
 {
     _logger       = logger;
     _testingLogic = testingLogic;
 }
 public void DecompileSystemCore()
 {
     TestingLogic.Decompile(typeof(Enumerable).Assembly.Location);
 }
 public void DecompileMscorlib()
 {
     TestingLogic.Decompile(typeof(int).Assembly.Location);
 }