(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / nunit20 / util / GuiOptions.cs
blobd7caf2153a2f59f2a97f3986bd3240fc61d136bd
1 #region Copyright (c) 2002-2003, James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole, Philip A. Craig
2 /************************************************************************************
4 ' Copyright 2002-2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
5 ' Copyright 2000-2002 Philip A. Craig
7 ' This software is provided 'as-is', without any express or implied warranty. In no
8 ' event will the authors be held liable for any damages arising from the use of this
9 ' software.
11 ' Permission is granted to anyone to use this software for any purpose, including
12 ' commercial applications, and to alter it and redistribute it freely, subject to the
13 ' following restrictions:
15 ' 1. The origin of this software must not be misrepresented; you must not claim that
16 ' you wrote the original software. If you use this software in a product, an
17 ' acknowledgment (see the following) in the product documentation is required.
19 ' Portions Copyright 2002-2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
20 ' or Copyright 2000-2002 Philip A. Craig
22 ' 2. Altered source versions must be plainly marked as such, and must not be
23 ' misrepresented as being the original software.
25 ' 3. This notice may not be removed or altered from any source distribution.
27 '***********************************************************************************/
28 #endregion
30 namespace NUnit.Util
32 using System;
33 using System.Text;
34 using Codeblast;
36 public class GuiOptions : CommandLineOptions
38 private bool isInvalid = false;
40 [Option(Short="?", Description = "Display help")]
41 public bool help = false;
43 [Option(Description = "Project configuration to load")]
44 public string config;
46 [Option(Description = "Suppress loading of last project")]
47 public bool noload;
49 [Option(Description = "Automatically run the loaded project")]
50 public bool run;
52 [Option(Description = "Fixture to test")]
53 public string fixture;
55 public GuiOptions(String[] args) : base(args)
58 protected override void InvalidOption(string name)
59 { isInvalid = true; }
61 public string Assembly
63 get
65 return (string)Parameters[0];
69 public bool IsAssembly
71 get
73 return ParameterCount == 1;
77 public bool Validate()
79 return (NoArgs || ParameterCount <= 1) && !isInvalid;
82 public override string GetHelpText()
84 const string initialText =
85 "NUNIT-GUI [inputfile] [options]\r\rRuns a set of NUnit tests from the console. You may specify\ran assembly or a project file of type .nunit as input.\r\rOptions:\r";
87 const string finalText =
88 "\rOptions that take values may use an equal sign, a colon\ror a space to separate the option from its value.";
90 return initialText + base.GetHelpText() + finalText;