using System;
using System.Collections.Generic;
using System.Text;
#if UNITTEST
using NUnit.Framework;
namespace Nuclex.Support.Parsing {
/// Ensures that the command line parser is working properly
[TestFixture]
public class CommandLineParserTest {
/// Validates that normal arguments can be parsed
[Test]
public void TestPlainArguments() {
Assert.AreEqual(
true.ToString(),
new CommandLineParser(new string[] { "-hello" })["hello"],
"Argument with minus sign is recognized"
);
Assert.AreEqual(
true.ToString(),
new CommandLineParser(new string[] { "--hello" })["hello"],
"Argument with double minus sign is recognized"
);
Assert.AreEqual(
true.ToString(),
new CommandLineParser(new string[] { "/hello" })["hello"],
"Argument with slash is recognized"
);
}
/// Validates that argument assignments are working
[Test]
public void TestAssignments() {
Assert.AreEqual(
"world",
new CommandLineParser(new string[] { "-hello:world" })["hello"],
"Argument can be assigned with a double colon"
);
Assert.AreEqual(
"world",
new CommandLineParser(new string[] { "-hello=world" })["hello"],
"Argument can be assigned with a equality sign"
);
Assert.AreEqual(
"world",
new CommandLineParser(new string[] { "-hello", "world" })["hello"],
"Argument can be assigned with a space"
);
}
}
} // namespace Nuclex.Support.Parsing
#endif // UNITTEST