Example #1
0
        public async Task <ActionResult> RunAll()
        {
            await testRunner.TestAllAsync(false, true);

            return(Content(testRunner.ToString()));
        }
Example #2
0
 public ActionResult RunAll()
 {
     testRunner.TestAll(false, true);
     return(Content(testRunner.ToString()));
 }