doc / ch.tutteli.atrium.api.fluent.en_GB / day

day

val Expect<LocalDate>.day: Expect<Int> (source)

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

Return
The newly created Expect for the extracted feature.

Since
0.9.0

val Expect<LocalDateTime>.day: Expect<Int> (source)

Creates an Expect for the property LocalDateTime.dayOfMonth of the subject of this expectation, so that further fluent calls are assertions about it.

Return
The newly created Expect for the extracted feature.

Since
0.9.0

val Expect<ZonedDateTime>.day: Expect<Int> (source)

Creates an Expect for the property ZonedDateTime.dayOfMonth of the subject of this expectation, so that further fluent calls are assertions about it.

Return
The newly created Expect for the extracted feature.

Since
0.9.0

fun Expect<LocalDate>.day(assertionCreator: Expect<Int>.() -> Unit): Expect<LocalDate> (source)

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

Return
an Expect for the subject of this expectation.

Since
0.9.0

fun Expect<LocalDateTime>.day(assertionCreator: Expect<Int>.() -> Unit): Expect<LocalDateTime> (source)

Expects that the property LocalDateTime.dayOfMonth of the subject of this expectation holds all assertions the given assertionCreator creates for it and returns an Expect for the current subject of this expectation.

Return
an Expect for the subject of this expectation.

Since
0.9.0

fun Expect<ZonedDateTime>.day(assertionCreator: Expect<Int>.() -> Unit): Expect<ZonedDateTime> (source)

Expects that the property ZonedDateTime.dayOfMonth of the subject of this expectation holds all assertions the given assertionCreator creates for it and returns an Expect for the current subject of this expectation.

Return
an Expect for the subject of this expectation.

Since
0.9.0