我有一個方法,需要一個地圖作爲參數的依賴關係。 public interface Service {
void doSomething(Map<String, String> map);
}
我想寫一個斷言,這個依賴被調用與適當的地圖內容。事情是這樣的: @RunWith(JMock.class)
public class MainTest {
private Mock
我目前正在編寫一些涉及JMock的測試。我無法理解的代碼結構如下: context.checking(new Expectations() { //context is of type Mockery of course
{
allowing(csv).getFileName();
will(returnValue(fileName));