Program.cs 238 B

12345678910111213
  1. using System;
  2. namespace AutoTestApplication
  3. {
  4. class Program
  5. {
  6. static void Main(string[] args)
  7. {
  8. var service = new AutoTestService();
  9. service.RunRobotFrameworkReport();
  10. }
  11. }
  12. }