~wesleycutting/nunitlite/work

« back to all changes in this revision

Viewing changes to src/tests/Program.cs

  • Committer: Charlie Poole
  • Date: 2013-01-24 01:32:48 UTC
  • Revision ID: charlie@nunit.org-20130124013248-dh15al2hm5vcbpgl
Add CI Build target to build, using a console app to load the silverlight tests and run them

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
namespace NUnitLite.Tests
30
30
{
31
 
    class Program
 
31
    public class Program
32
32
    {
33
33
        // The main program executes the tests. Output may be routed to
34
34
        // various locations, depending on the arguments passed.
60
60
        //
61
61
        //    -wait             Wait for a keypress before exiting.
62
62
        //
63
 
        static void Main(string[] args)
 
63
        public static void Main(string[] args)
64
64
        {
65
65
            new TextUI().Execute(args);
66
66
        }