HasPropertyWithValueTest.java | 37 assertMatches("with property", hasProperty("property", equalTo("is expected")), shouldMatch); 38 assertMismatchDescription("property 'property' was \"not expected\"", 39 hasProperty("property", equalTo("is expected")), shouldNotMatch); 43 assertMatches("with bean info", hasProperty("property", equalTo("with info")), beanWithInfo); 44 assertMismatchDescription("property 'property' was \"with info\"", 45 hasProperty("property", equalTo("without info")), beanWithInfo); 49 assertMismatchDescription("No property \"nonExistentProperty\"", 92 private String property; field in class:HasPropertyWithValueTest.BeanWithoutInfo 122 public String property() { method in class:HasPropertyWithValueTest.BeanWithInfo [all...] |