Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道MockUnitils.assertNoMoreInvocations();,但是如何仅对一个 Mock 对象实现类似的效果?
MockUnitils.assertNoMoreInvocations();
我正在对某些方法进行某种黑盒测试。我知道他们可能在模拟上调用的方法列表,但我必须确保他们绝对不会调用其他方法。
看来我需要类似assertOptionallyInvoked()或assertNoOtherInovations()模拟的东西。Unitils可以做到这一点吗?
assertOptionallyInvoked()
assertNoOtherInovations()
通过实现我自己的场景类解决了这个问题。