infix fun LocalDateTime.shouldHaveDayOfYear(day: Int): Unit
Asserts that the day of year inputted is equaled the date day
val date = LocalDateTime.of(2019, 2, 15, 12, 0, 0, 0) date.shouldHaveDayOfYear(46) // Assertion passes