如何将 Hamcrest 匹配器应用于被测 class 的 属性?
How to apply a Hamcrest matcher to the property of a class under test?
有没有办法构建一个组合的 Hamcrest 匹配器来测试一个对象和这个对象的 属性? - 伪代码:
both(
instanceof(MultipleFailureException.class)
).and(
// pseudo code starts
adapt(
new Adapter<MultipleFailureException, Iterable<Throwable>()
{
public Iterable<Throwable> getAdapter(MultipleFailureException item)
{
return item.getFailures();
}
},
// pseudo code ends
everyItem(instanceOf(IllegalArgumentException.class))
)
)
背景:我有一个 JUnit 测试,它遍历一组动态对象。每个对象在处理时都应该抛出异常。收集异常。测试预计以包含这些抛出异常的集合的 MultipleFailureException 结束:
protected final ExpectedException expectation = ExpectedException.none();
protected final ErrorCollector collector = new ErrorCollector();
@Rule
public RuleChain exceptionRules = RuleChain.outerRule(expectation).around(collector);
@Test
public void testIllegalEnumConstant()
{
expectation.expect(/* pseudo code from above */);
for (Object object : ILLEGAL_OBJECTS)
{
try
{
object.processWithThrow();
}
catch (Throwable T)
{
collector.addError(T);
}
}
}
我想你可能正在寻找 hasProperty or hasPropertyWithValue
示例见此处:https://theholyjava.wordpress.com/2011/10/15/hasproperty-the-hidden-gem-of-hamcrest-and-assertthat/
另一个我之前工作过的例子;在这里我们检查我们是否有一个 Quote
方法 getModels()
returns 一个 PhoneModel
的集合并且集合中的一个项目有一个 属性 makeId
等于 LG_ID 和 modelId
等于 NEXUS_4_ID.
assertThat(quote.getModels(),
hasItem(Matchers.<PhoneModel> hasProperty("makeId",
equalTo(LG_ID))));
assertThat(quote.getModels(),
hasItem(Matchers.<PhoneModel> hasProperty("modelId",
equalTo(NEXUS_4_ID))));
}
要实现这一点,hamcrest 需要您采用 JavaBean 约定。
有没有办法构建一个组合的 Hamcrest 匹配器来测试一个对象和这个对象的 属性? - 伪代码:
both(
instanceof(MultipleFailureException.class)
).and(
// pseudo code starts
adapt(
new Adapter<MultipleFailureException, Iterable<Throwable>()
{
public Iterable<Throwable> getAdapter(MultipleFailureException item)
{
return item.getFailures();
}
},
// pseudo code ends
everyItem(instanceOf(IllegalArgumentException.class))
)
)
背景:我有一个 JUnit 测试,它遍历一组动态对象。每个对象在处理时都应该抛出异常。收集异常。测试预计以包含这些抛出异常的集合的 MultipleFailureException 结束:
protected final ExpectedException expectation = ExpectedException.none();
protected final ErrorCollector collector = new ErrorCollector();
@Rule
public RuleChain exceptionRules = RuleChain.outerRule(expectation).around(collector);
@Test
public void testIllegalEnumConstant()
{
expectation.expect(/* pseudo code from above */);
for (Object object : ILLEGAL_OBJECTS)
{
try
{
object.processWithThrow();
}
catch (Throwable T)
{
collector.addError(T);
}
}
}
我想你可能正在寻找 hasProperty or hasPropertyWithValue
示例见此处:https://theholyjava.wordpress.com/2011/10/15/hasproperty-the-hidden-gem-of-hamcrest-and-assertthat/
另一个我之前工作过的例子;在这里我们检查我们是否有一个 Quote
方法 getModels()
returns 一个 PhoneModel
的集合并且集合中的一个项目有一个 属性 makeId
等于 LG_ID 和 modelId
等于 NEXUS_4_ID.
assertThat(quote.getModels(),
hasItem(Matchers.<PhoneModel> hasProperty("makeId",
equalTo(LG_ID))));
assertThat(quote.getModels(),
hasItem(Matchers.<PhoneModel> hasProperty("modelId",
equalTo(NEXUS_4_ID))));
}
要实现这一点,hamcrest 需要您采用 JavaBean 约定。