在Spock中,我如何测试MyLookup.withTransaction
块?
例如,在测试下面的代码时,如何确保then:
1 * MyLookup.findValue(item)
中的代码被执行?
class itemService {
static String lookUpInfo(String item){
MyLookup.withTransaction {
valInfo = MyLookup.findValue(item)
}
return valInfo
}
}
这是服务类:
@Override
public void onClick(View v) {
Intent intent = new Intent(getActivity(), new Dashan1Activity());
getActivity().startActivity(intent);
}
答案 0 :(得分:0)