代码之家  ›  专栏  ›  技术社区  ›  Gishu

Rhino Mocks:如何匹配期望中的数组参数?

  •  2
  • Gishu  · 技术社区  · 15 年前

    又在犀牛嘲笑墙角

    mockUI.Expect( x => x.Update( new Frame[] {Frame.MakeIncompleteFrame(1, 5)} ) );
    

    这正是我需要匹配的论点。通过trace语句,我已经验证了这是实际输出,也就是说,代码的行为符合预期,但是测试不同意。犀牛回应

    TestBowlingScorer.TestGamePresenter.TestStart:
    Rhino.Mocks.Exceptions.ExpectationViolationException : IScoreObserver.Update([Frame# 1, Score =  0 Rolls [  5,  PENDING,  ]]); Expected #1, Actual #0.
    

    帧对象包含的属性很少,但尚未重写Equals()(如上图所示,重写了ToString())。更新接收帧数组; 如何设置此期望值?我看到一个Is.Matching约束。。不知道如何使用它,或者更关心它的冗长性。

    我有一个助手NUnit风格的自定义断言

    public static void AssertFramesAreEqual(Frame[] expectedFrames, Frame[] actualFrames)
    {
      // loop over both collections
         // compare attributes
    }
    
    2 回复  |  直到 15 年前
        1
  •  3
  •   George Mauer    15 年前

    @吉舒, 是的,就这样。我还了解了Arg<gt;静态类,它应该允许您执行以下操作:

    mockUI.Expect( x => x.Update(Arg<Frame[]>
               .Matches(fs=>HelperPredicates.CheckFrames ( expected, fs)) ));
    

    还有一个Arg<>.List配置起点,我还没有探索过,但可能更适合您的需要

        2
  •  2
  •   Gishu    15 年前

    验证工作。。不知道这是不是犀牛模仿的方式

    var expectedFrames = new Frame[] { Frame.MakeIncompleteFrame(1, 5) };
    mockUI.Expect( x => x.Update(null) )
                .IgnoreArguments()
                .Constraints( Is.Matching<Frame[]>( frames => HelperPredicates.CheckFramesMatch(expectedFrames, frames) ) );
    

    helper谓词只是一个函数,在完全匹配else false时返回布尔值True。

     public static bool CheckFramesMatch(Frame[] expectedFrames, Frame[] actualFrames)
      {
         // return false if array lengths differ
         // loop over corresponding elements
              // return false if any attribute differs
         // return true
      }