``` object FiscalDateUtil { @JvmStatic fun...
# mockk
t
Copy code
object FiscalDateUtil {
    @JvmStatic
    fun getCurrentFiscalYear(): Int {
        val currentMonth = LocalDateTime.now().month
        val yearValue = Year.now().value

        return when (currentMonth) {
            Month.JANUARY, Month.FEBRUARY, Month.MARCH -> yearValue - 1
            else -> yearValue
        }
    }
}