Uses of Class
org.fest.assertions.groups.Properties
-
Packages that use Properties Package Description org.fest.assertions.api org.fest.assertions.groups -
-
Uses of Properties in org.fest.assertions.api
Methods in org.fest.assertions.api that return Properties Modifier and Type Method Description static Properties<java.lang.Object>
Assertions. extractProperty(java.lang.String propertyName)
Only delegate toextractProperty(String)
so that Assertions offers a full feature entry point to all Fest Assert features (but you can useProperties
if you prefer).static <T> Properties<T>
Assertions. extractProperty(java.lang.String propertyName, java.lang.Class<T> propertyType)
Only delegate toextractProperty(String)
so that Assertions offers a full feature entry point to all Fest Assert features (but you can useProperties
if you prefer). -
Uses of Properties in org.fest.assertions.groups
Methods in org.fest.assertions.groups that return Properties Modifier and Type Method Description static Properties<java.lang.Object>
Properties. extractProperty(java.lang.String propertyName)
Creates a new
.Properties
with given propertyName and Object as property type.static <T> Properties<T>
Properties. extractProperty(java.lang.String propertyName, java.lang.Class<T> propertyType)
Creates a new
.Properties
<U> Properties<U>
Properties. ofType(java.lang.Class<U> propertyType)
Specifies the target type of an instance that was previously created withextractProperty(String)
.
-