(defn report-problem
{:dynamic true}
([function expected actual]
(report-problem function expected actual "Expectation not met."))
([function expected actual message]
(prn (str message " Function name: " function
" expected: " expected " actual: " actual))))
Comments top
No comments for report-problem. Log in to add a comment.