本文整理汇总了C#中CommandManager.GetCommandOptions方法的典型用法代码示例。如果您正苦于以下问题:C# CommandManager.GetCommandOptions方法的具体用法?C# CommandManager.GetCommandOptions怎么用?C# CommandManager.GetCommandOptions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CommandManager
的用法示例。
在下文中一共展示了CommandManager.GetCommandOptions方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetCommandOptions_ThrowsWhenOptionHasNoSetter
public void GetCommandOptions_ThrowsWhenOptionHasNoSetter()
{
// Arrange
CommandManager cm = new CommandManager();
ICommand cmd = new MockCommandBadOption();
cm.RegisterCommand(cmd);
string expectedErrorText = "[option] on 'NuGet.Test.NuGetCommandLine.CommandManagerTests+MockCommandBadOption.Message' is invalid without a setter.";
// Act & Assert
ExceptionAssert.Throws<InvalidOperationException>(() => cm.GetCommandOptions(cmd), expectedErrorText);
}
示例2: GetCommandOptions_ReturnsCorrectOpionAttributeAndPropertyInfo
public void GetCommandOptions_ReturnsCorrectOpionAttributeAndPropertyInfo()
{
// Arrange
CommandManager cm = new CommandManager();
ICommand cmd = new MockCommand();
cm.RegisterCommand(cmd);
Dictionary<OptionAttribute, PropertyInfo> expected = new Dictionary<OptionAttribute, PropertyInfo>();
var expectedOptionAttributeOne = new OptionAttribute("A Option");
var expectedPropertyInfoOne = typeof(MockCommand).GetProperty("Message");
expected.Add(expectedOptionAttributeOne, expectedPropertyInfoOne);
var expectedOptionAttributeTwo = new OptionAttribute("A Option Two");
var expectedPropertyInfoTwo = typeof(MockCommand).GetProperty("MessageTwo");
expected.Add(expectedOptionAttributeTwo, expectedPropertyInfoTwo);
// Act
IDictionary<OptionAttribute, PropertyInfo> actual = cm.GetCommandOptions(cmd);
// Assert
Assert.AreEqual(2, actual.Count);
Assert.AreEqual(expectedOptionAttributeOne, actual.Keys.First());
Assert.AreEqual(expectedPropertyInfoOne, actual[expectedOptionAttributeOne]);
Assert.AreEqual(expectedOptionAttributeTwo, actual.Keys.Last());
Assert.AreEqual(expectedPropertyInfoTwo, actual[expectedOptionAttributeTwo]);
}