使用Pex

时间:2015-10-05 13:23:57

标签: unit-testing pex intellitest

从表征测试的角度看,Pex看起来很有趣,但是我很难让它在通过引用传递的对象中断言更改。

考虑到我试图在下面测试的代码:

public class ItemUpdater
{
    public void Update(Item item)
    {
        if (item.Name == "Two Times")
        {
            item.Quantity = item.Quantity*2;
        }
        if (item.Name == "Two more") {
            item.Quantity = item.Quantity + 2;
        }
    }
}

public class Item
{
    public string Name { get; set; }
    public int Quantity { get; set; }
}

我要做的是针对Update创建并运行intellitest测试,这将导致Characterization / Locking测试,以便我可以进行更改。

当生成测试时,我得到:

 [TestClass]
    [PexClass(typeof(ItemUpdater))]
    [PexAllowedExceptionFromTypeUnderTest(typeof(ArgumentException), AcceptExceptionSubtypes = true)]
    [PexAllowedExceptionFromTypeUnderTest(typeof(InvalidOperationException))]
    public partial class ItemUpdaterTest
    {

        /// <summary>Test stub for Update(Item)</summary>
        [PexMethod]
        public void UpdateTest([PexAssumeUnderTest]ItemUpdater target, Item item) {
            PexAssume.IsNotNull(item);

            target.Update(item);

            var quality = item.Quantity;
            PexAssert.AreEqual(quality, item.Quantity);
            // TODO: add assertions to method ItemUpdaterTest.UpdateTest(ItemUpdater, Item)
        }
    }

我添加了一个假设来删除空检查测试,这里没问题。

我遇到的问题是自动生成item.Quantity断言。我也尝试将质量作为参数传递给UpdateTest(....,int quality),但这总是设置为零。

所有这一切都是:

[TestMethod]
[PexGeneratedBy(typeof(ItemUpdaterTest))]
public void UpdateTest515()
{
    ItemUpdater s0 = new ItemUpdater();
    Item s1 = new Item();
    s1.Name = "Two more";
    s1.Quantity = 0;
    this.UpdateTest(s0, s1);
    Assert.IsNotNull((object)s0);
}

没有断言item.Quantity的价值。

有人知道如何让Pex / Intellitest在调用Update方法后针对返回的item.Quality生成断言吗?

2 个答案:

答案 0 :(得分:1)

我发现了如何做到这一点。答案是像这样添加PexObserve.ValueAtEndOfTest:

[TestClass]
    [PexClass(typeof(ItemUpdater))]
    [PexAllowedExceptionFromTypeUnderTest(typeof(ArgumentException), AcceptExceptionSubtypes = true)]
    [PexAllowedExceptionFromTypeUnderTest(typeof(InvalidOperationException))]
    public partial class ItemUpdaterTest
    {

        /// <summary>Test stub for Update(Item)</summary>
        [PexMethod]
        public void UpdateTest([PexAssumeUnderTest]ItemUpdater target, Item item) {
            PexAssume.IsNotNull(item);

            target.Update(item);

            var testable = item;
            PexObserve.ValueAtEndOfTest("Quantity", testable.Quantity);
        }
    }

这将生成测试参数的代码。

答案 1 :(得分:1)

请使用此处记录的PexObserve.ValueAtEndOfTest:https://msdn.microsoft.com/en-us/library/dn885804.aspx。请参阅博客文章以获取参考:http://blogs.msdn.com/b/visualstudioalm/archive/2015/08/14/intellitest-hands-on.aspx