摘要: 几年前在单元测试时使用mockito和junit(使用hamcrest提供的比较方法)的时候,就用到过这样类似的语法:mockito:when(mock.someMethod("some arg")) .thenThrow(new RuntimeException()) .thenReturn("foo");junit:assertThat(responseString, either(containsString("color")).or(containsString("colour")));如果按照自然语言来理 阅读全文
posted @ 2014-01-11 23:37 skytraveler 阅读(2274) 评论(0) 推荐(0) 编辑