我从Jmock的主页上读到有关matchers的信息,最上面有一个关于字符串匹配器的例子。我不明白,因为根据这个例子,匹配一个字符串就像编写import static org.hamcrest.Matchers一样简单。*;然后使用stringContains函数,但这对我的实现不起作用。
我想做的就是
new Expectations() {{
mockedType.someFunction(with( **match string here** ) );
}};
答案 0 :(得分:0)
new Expectations() {{
allowing(mockedType).someFunction("My String"); when ... ; will ... ; then ...
}};
必须正常工作