4

如果没有提供任何参数,我无法弄清楚如何对这个命令行开关失败进行单元测试。

[Cmdlet(VerbsCommon.Move, "SomeResource")]
public class MoveSomeResource : Cmdlet
{
private int _id;

[Parameter(Position = 0, Mandatory = true)]
[ValidateNotNullOrEmpty]
public int ID 
{
    get { return _id; }
    set { _id = value; }
}

protected override void ProcessRecord()
{

    string text = string.Format("Move Resource {0} ", this._id);
    //Do something
    if (ShouldProcess(text, action))
    {
        //Do processing
    }
}
}

我尝试了以下方法,但是它并没有因为 ValidateNotNullOrEmpty 错误而失败,而是它执行 //Do Processing 中的部分并在那里失败。

[TestMethod]
public void TestMoveBluh()
{
MoveSomeResource cmd = new MoveSomeResource();
IEnumerator result = cmd.Invoke().GetEnumerator();
try
{
    result.MoveNext();
}
catch (Exception e)
{
    Assert.IsInstanceOfType(e, typeof(ArgumentException));
}
}
4

1 回答 1

-1

好的,我想我看到了这个问题。您的参数是一个 int,int 不为空,并且它们永远不会为空。我建议验证参数的值不为零,还是将其设为 int?或可为空

于 2013-07-18T05:38:19.850 回答