PageRenderTime 71ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/src/NUnit/nunit-gui-exe/Class1.cs

#
C# | 24 lines | 12 code | 1 blank | 11 comment | 0 complexity | 686dc0695ac19dcae537ad89686559c1 MD5 | raw file
Possible License(s): GPL-2.0
  1. // ****************************************************************
  2. // Copyright 2007, Charlie Poole
  3. // This is free software licensed under the NUnit license. You may
  4. // obtain a copy of the license at http://nunit.org
  5. // ****************************************************************
  6. using System;
  7. namespace NUnit.Gui
  8. {
  9. /// <summary>
  10. /// Summary description for Class1.
  11. /// </summary>
  12. public class Class1
  13. {
  14. /// <summary>
  15. /// The main entry point for the application.
  16. /// </summary>
  17. [STAThread]
  18. public static int Main(string[] args)
  19. {
  20. return NUnit.Gui.AppEntry.Main( args );
  21. }
  22. }
  23. }