当前位置: 首页>>代码示例>>C#>>正文


C# CommandManager.GetCommandOptions方法代码示例

本文整理汇总了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);
 }
开发者ID:njannink,项目名称:sonarlint-vs,代码行数:10,代码来源:CommandManagerTests.cs

示例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]);
 }
开发者ID:grendello,项目名称:nuget,代码行数:22,代码来源:CommandManagerTests.cs


注:本文中的CommandManager.GetCommandOptions方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。