public TestExcecutionEngine Execute()
 {
     if (Container == null)
         throw new ArgumentNullException("call Collect method first");
     //Async || Parallel
     Container = this.executor.Execute(Container);
     return this;
 }
Esempio n. 2
0
        public TestContainer Execute(TestContainer container)
        {
            Stopwatch swContainer = Stopwatch.StartNew();
            //foreach (var cat in con.TestCategorys)
            container.TestCategorys.AsParallel().ForAll(cat =>
            {
                var instance = Activator.CreateInstance(cat.Assembly, cat.Type).Unwrap();
                Stopwatch swCategory = Stopwatch.StartNew();
                //foreach (var test in cat.AllTests)
                cat.AllTests.AsParallel().ForAll(test =>
                {
                    if (test.Enabled)
                    {
                        Stopwatch swTest = Stopwatch.StartNew();
                        try
                        {
                            var mi = instance.GetType().GetMethod(test.MethodInfo);
                            mi.Invoke(instance, new object[] { });
                            test.Status = TestStatus.Passed;
                        }
                        catch (Exception ex)
                        {
                            if (ex.IsInconclusive())
                                test.Status = TestStatus.Inconclusive;
                            else if (ex.IsExpectedException(test.ExpectedExceptions))
                                test.Status = TestStatus.PassedExpectedException;
                            else if (ex.IsFailed())
                                test.Status = TestStatus.Failed;
                            else
                                test.Status = TestStatus.FailedUnhandledException;

                            //Console.WriteLine(ex.GetMessage());
                            test.Exception = ex.ToString();
                            test.Message = ex.GetMessage();
                        }
                        swTest.Stop();
                        test.ElapsedMilliseconds = swTest.ElapsedMilliseconds;
                        test.Thread = Thread.CurrentThread.ManagedThreadId.ToString();
                    }
                });
                swCategory.Stop();
                cat.ElapsedMilliseconds = swCategory.ElapsedMilliseconds;

            });
            swContainer.Stop();
            container.ElapsedMilliseconds = swContainer.ElapsedMilliseconds;
            return container;
        }
Esempio n. 3
0
 public TestContainer Collect()
 {
     TestContainer container = new TestContainer();
     foreach (var file in files)
     {
         //Console.WriteLine(file);
         var asm = Assembly.LoadFile(Path.GetFullPath(file));
         var types = asm.GetTypes();
         foreach (var type in types)
         {
             if (type.IsTestClass())
             {
                 //var instance = Activator.CreateInstance(type);
                 var category = new TestCategory(asm, type);
                 category.Description = type.GetDescription();
                 //Console.WriteLine("Class" + type.Name);
                 var mis = type.GetMethods();
                 foreach (var mi in mis)
                 {
                     var tu = new TestUnit(mi);
                     tu.ExpectedExceptions = mi.GetExpectedExceptions();
                     tu.Description = mi.GetDescription();
                     tu.Enabled = !mi.IsIgnore();
                     //Console.WriteLine(mi.Name);
                     if (mi.IsTestInitialize())
                     {
                         category.TestInitialize.Add(tu);
                     }
                     else if (mi.IsTestCleanup())
                     {
                         category.TestCleanup.Add(tu);
                     }
                     else if (mi.IsTestMethod())
                     {
                         category.Test.Add(tu);
                     }
                 }
                 container.TestCategorys.Add(category);
             }
         }
     }
     return container;
 }
 public TestExcecutionEngine Collect()
 {
     Container = collector.Collect();
     return this;
 }