kotest-assertions-core / io.kotest.matchers.date / java.time.LocalDateTime / shouldHaveDayOfMonth

shouldHaveDayOfMonth

infix fun LocalDateTime.shouldHaveDayOfMonth(day: Int): Unit

Asserts that the day of month inputted is equaled the date day

    val date = LocalDateTime.of(2019, 2, 15, 12, 0, 0, 0)

    date.shouldHaveDayOfMonth(15) // Assertion passes