-
Notifications
You must be signed in to change notification settings - Fork 291
/
Copy pathHelpFakes.cs
61 lines (49 loc) · 2.78 KB
/
HelpFakes.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Copyright 2005-2015 Giacomo Stelluti Scala & Contributors. All rights reserved. See doc/License.md in the project root for license information.
namespace CommandLine.Tests.Fakes
{
class FakeOptionsForHelp
{
[Option('v', "verbose")]
public bool Verbose { get; set; }
[Option("input-file")]
public string FileName { get; set; }
}
class FakeOptionsWithDescription
{
[Option('v', "verbose", HelpText = "Comment extensively every operation.")]
public bool Verbose { get; set; }
[Option('i', "input-file", Required = true, HelpText = "Specify input file to be processed.")]
public string FileName { get; set; }
}
class FakeOptionsWithLongDescription
{
[Option('v', "verbose", HelpText = "This is the description of the verbosity to test out the wrapping capabilities of the Help Text.")]
public bool Verbose { get; set; }
[Option("input-file", HelpText = "This is a very long description of the Input File argument that gets passed in. It should be passed in as a string.")]
public string FileName { get; set; }
}
class FakeOptionsWithLongDescriptionAndNewLines
{
[Option('v', "verbose", HelpText = "This is the description of the verbosity to test out the wrapping capabilities of the Help Text.\n\nIn Addition to testing the insertion of line feeds.")]
public bool Verbose { get; set; }
[Option("input-file", HelpText = "This is a very long description of the Input File argument that gets passed in. It should be passed in as a string.\nThis tests a single line feed insertion.")]
public string FileName { get; set; }
}
class FakeOptionsWithLongDescriptionAndMixedNewLines
{
/// <summary>
/// HelpText string with a line feed character followed by a carriage return + line feed, should behave the same as 2 line feeds
/// </summary>
[Option('v', "verbose", HelpText = "This is the description of the verbosity to test out the wrapping capabilities of the Help Text.\n\r\nIn Addition to testing the insertion of line feeds.")]
public bool Verbose { get; set; }
[Option("input-file", HelpText = "This is a very long description of the Input File argument that gets passed in. It should be passed in as a string.\r\nThis tests a single line feed insertion.")]
public string FileName { get; set; }
}
class FakeOptionsWithLongDescriptionAndNoSpaces
{
[Option('v', "verbose", HelpText = "Before 012345678901234567890123 After")]
public bool Verbose { get; set; }
[Option("input-file", HelpText = "Before 012345678901234567890123456789 After")]
public string FileName { get; set; }
}
}