data class FeatureExpectOptions<R>
Additional (non-mandatory) options to create a FeatureExpect.
FeatureExpectOptions(description: Translatable? = null, representationInsteadOfFeature: ((R) -> Any)? = null)
Additional (non-mandatory) options to create a FeatureExpect. |
val description: Translatable?
Defines a custom description if not null. |
|
val representationInsteadOfFeature: ((R) -> Any)?
Defines a custom representation based on a present subject if not null. |
fun merge(options: FeatureExpectOptions<R>): FeatureExpectOptions<R>
Merges the given options with this object creating a new FeatureExpectOptions where defined properties in options will have precedence over properties defined in this instance. |