本文整理汇总了C#中TestCase.ConvertToTestCommand方法的典型用法代码示例。如果您正苦于以下问题:C# TestCase.ConvertToTestCommand方法的具体用法?C# TestCase.ConvertToTestCommand怎么用?C# TestCase.ConvertToTestCommand使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TestCase
的用法示例。
在下文中一共展示了TestCase.ConvertToTestCommand方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ConvertToTestCommandWithNullMethodThrows
public void ConvertToTestCommandWithNullMethodThrows()
{
Action<object> dummyAction = _ => { };
var sut = new TestCase(dummyAction);
Assert.Throws<ArgumentNullException>(
() => sut.ConvertToTestCommand(null));
}
示例2: ConvertToTestCommandReturnsResultWithCorrectTestMethod
public void ConvertToTestCommandReturnsResultWithCorrectTestMethod()
{
Action<StringComparer> dummyAction = _ => { };
var sut = new TestCase<StringComparer>(dummyAction);
var actual = sut.ConvertToTestCommand(anotherMethod);
var fcc = Assert.IsAssignableFrom<FirstClassCommand>(actual);
Assert.Equal(anotherMethod, fcc.HostTestMethod);
}
示例3: ConvertToTestCommandReturnsCorrectResult
public void ConvertToTestCommandReturnsCorrectResult()
{
Action<object> expected = _ => { };
var sut = new TestCase(expected);
ITestCommand actual = sut.ConvertToTestCommand(dummyMethod);
var fcc = Assert.IsAssignableFrom<FirstClassCommand>(actual);
Assert.Equal(expected, fcc.TestAction);
}
示例4: ConvertToTestCommandReturnsResultWithAppropriateTypeCheck
public void ConvertToTestCommandReturnsResultWithAppropriateTypeCheck()
{
Action<OperatingSystem> dummyAction = _ => { };
var sut = new TestCase<OperatingSystem>(dummyAction);
var actual = sut.ConvertToTestCommand(dummyMethod);
var fcc = Assert.IsAssignableFrom<FirstClassCommand>(actual);
Assert.Throws<ArgumentException>(
() => fcc.TestAction(new StringBuilder()));
}
示例5: ConvertToTestCommandReturnsCorrectResult
public void ConvertToTestCommandReturnsCorrectResult()
{
var verified = false;
var input = new Version(1, 1);
Action<Version> expected = v => verified = input.Equals(v);
var sut = new TestCase<Version>(expected);
ITestCommand actual = sut.ConvertToTestCommand(dummyMethod);
var fcc = Assert.IsAssignableFrom<FirstClassCommand>(actual);
fcc.TestAction(input);
Assert.True(
verified,
"Invoking TestAction on the resulting FirstClassCommand should indirectly indicate that the original test command was invoked.");
}