and then within my Spring Service: ``` private...
# mockk
t
and then within my Spring Service:
Copy code
private fun isValidMonthYear(fiscalYear: Int): Boolean {
        val currentFiscalYear = FiscalDateUtil.getCurrentFiscalYear()

        return when {
            fiscalYear >= currentFiscalYear -> true
            else -> false
        }
    }