doc / ch.tutteli.atrium.api.fluent.en_GB.jdk8 / dayOfWeek

dayOfWeek

val <T : LocalDate> Expect<T>.dayOfWeek: Expect<DayOfWeek>
Deprecated: Use the function from the normal jvm module; the jdk8 extension will be removed with 1.0.0

Creates an Expect for the property LocalDate.getDayOfWeek of the subject of the assertion, so that further fluent calls are assertions about it.

Return
The newly created Expect for the extracted feature.

Since
0.9.0

fun <T : LocalDate> Expect<T>.dayOfWeek(assertionCreator: Expect<DayOfWeek>.() -> Unit): Expect<T>
Deprecated: Use the function from the normal jvm module; the jdk8 extension will be removed with 1.0.0

Expects that the property LocalDate.getDayOfWeek of the subject of the assertion holds all assertions the given assertionCreator creates for it and returns an Expect for the current subject of the assertion.

Exceptions

AssertionError - Might throw an AssertionError if the assertion made is not correct.

Return
An Expect for the current subject of the assertion.

Since
0.9.0