예제 #1
0
 static async Task Main(string[] args)
 {
     Console.WriteLine("Test application for DepsWebApp\nby Andrey Basystyi");
     try
     {
         var testValidator = new TestValidator();
         testValidator.SetTestsFromFile(_testsFilePath);
         await testValidator.StartTests();
     }
     catch (Exception ex)
     {
         Console.WriteLine($"Oooops... Something was wrong:\n{ex.Message}");
     }
 }