Program.cs 579 B

1234567891011121314151617181920212223
  1. using NUnit.Common;
  2. using NUnitLite;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Diagnostics;
  6. using System.Linq;
  7. using System.Reflection;
  8. using System.Threading.Tasks;
  9. namespace jSignature.Tools.Tests
  10. {
  11. public class Program
  12. {
  13. public static int Main(string[] args)
  14. {
  15. var res = new AutoRun(typeof(Program).GetTypeInfo().Assembly).Execute(args, new ExtendedTextWrapper(Console.Out), Console.In);
  16. Console.WriteLine("\n\nPress any key...");
  17. Console.ReadKey();
  18. return res;
  19. }
  20. }
  21. }