It would be nice to have a `.withFailMessage(...)` method to be able to customize failures. ```kotlin fun Assert<View>.viewIsNotEmpty() { assert(actual.childCount).withFailMessage("expected view to not be empty").isGreaterThan(0) } ```