dayOfWeek

Expects that the property LocalDate.getDayOfWeek 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

Samples

expect(LocalDate.of(2021, Month.OCTOBER, 9))
    .dayOfWeek { // subject inside this expectation-group is of type DayOfWeek (actually SATURDAY)
        toEqual(DayOfWeek.SATURDAY)
        notToEqual(DayOfWeek.SUNDAY)
    } // subject here is back to type LocalDate

fails {
    expect(LocalDate.of(2021, Month.OCTOBER, 9))
        .dayOfWeek { // subject inside this expectation-group is of type DayOfWeek (actually SATURDAY)
            toEqual(DayOfWeek.MONDAY)       // fails
            notToEqual(DayOfWeek.SATURDAY)  // still evaluated even though toEqual already fails
            //                                 use `.dayOfWeek.` if you want a fail fast behaviour
        }
}

Expects that the property LocalDateTime.dayOfWeekof 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

Samples

expect(LocalDateTime.of(2021, Month.OCTOBER, 9, 11, 56))
    .dayOfWeek { // subject inside this expectation-group is of type DayOfWeek (actually SATURDAY)
        toEqual(DayOfWeek.SATURDAY)
        notToEqual(DayOfWeek.SUNDAY)
    } // subject here is back to type LocalDateTime

fails {
    expect(LocalDateTime.of(2021, Month.OCTOBER, 9, 11, 56))
        .dayOfWeek { // subject inside this expectation-group is of type DayOfWeek (actually SATURDAY)
            toEqual(DayOfWeek.MONDAY)       // fails
            notToEqual(DayOfWeek.SATURDAY)  // still evaluated even though toEqual already fails
            //                                 use `.dayOfWeek.` if you want a fail fast behaviour
        }
}

Expects that the property ZonedDatetime.dayOfWeek 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

Samples

val zonedDateTime = ZonedDateTime.of(LocalDateTime.of(2021, 10, 9, 11, 56), ZoneId.systemDefault())

expect(zonedDateTime)
    .dayOfWeek { // subject inside this expectation-group is of type DayOfWeek (actually SATURDAY)
        toEqual(DayOfWeek.SATURDAY)
        notToEqual(DayOfWeek.SUNDAY)
    } // subject here is back to type ZonedDateTime

fails {
    expect(zonedDateTime)
        .dayOfWeek { // subject inside this expectation-group is of type DayOfWeek (actually SATURDAY)
            toEqual(DayOfWeek.MONDAY)       // fails
            notToEqual(DayOfWeek.SATURDAY)  // still evaluated even though toEqual already fails
            //                                 use `.dayOfWeek.` if you want a fail fast behaviour
        }
}

Creates an Expect for the property LocalDate.getDayOfWeek 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

Samples

expect(LocalDate.of(2021, Month.OCTOBER, 9))
    .dayOfWeek // subject is now of type DayOfWeek (actually SATURDAY)
    .toEqual(DayOfWeek.SATURDAY)

fails {
    expect(LocalDate.of(2021, Month.OCTOBER, 9))
        .dayOfWeek // subject is now of type DayOfWeek (actually SATURDAY)
        .toEqual(DayOfWeek.MONDAY)       // fails
        .notToEqual(DayOfWeek.SATURDAY)  // not evaluated/reported because toEqual already fails
    //                                      use `.dayOfWeek { ... }` if you want that all expectations are evaluated
}

Creates an Expect for the property LocalDateTime.dayOfWeek 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

Samples

expect(LocalDateTime.of(2021, Month.OCTOBER, 9, 11, 56))
    .dayOfWeek // subject is now of type DayOfWeek (actually SATURDAY)
    .toEqual(DayOfWeek.SATURDAY)


fails {
    expect(LocalDateTime.of(2021, Month.OCTOBER, 9, 11, 56))
        .dayOfWeek // subject is now of type DayOfWeek (actually SATURDAY)
        .toEqual(DayOfWeek.MONDAY)       // fails
        .notToEqual(DayOfWeek.SATURDAY)  // not evaluated/reported because toEqual already fails
    //                                      use `.dayOfWeek { ... }` if you want that all expectations are evaluated

}

Creates an Expect for the property ZonedDatetime.dayOfWeek 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

Samples

val zonedDateTime = ZonedDateTime.of(LocalDateTime.of(2021, 10, 9, 11, 56), ZoneId.systemDefault())

expect(zonedDateTime)
    .dayOfWeek // subject is now of type DayOfWeek (actually SATURDAY)
    .toEqual(DayOfWeek.SATURDAY)


fails {
    expect(zonedDateTime)
        .dayOfWeek // subject is now of type DayOfWeek (actually SATURDAY)
        .toEqual(DayOfWeek.MONDAY)       // fails
        .notToEqual(DayOfWeek.SATURDAY)  // not evaluated/reported because toEqual already fails
    //                                      use `.dayOfWeek { ... }` if you want that all expectations are evaluated

}