mirror of
https://github.com/irmen/prog8.git
synced 2024-11-04 04:05:00 +00:00
37 lines
1.1 KiB
Kotlin
37 lines
1.1 KiB
Kotlin
package prog8tests.helpers
|
|
|
|
import prog8.code.core.IErrorReporter
|
|
import prog8.code.core.Position
|
|
|
|
internal class ErrorReporterForTests(private val throwExceptionAtReportIfErrors: Boolean=true, private val keepMessagesAfterReporting: Boolean=false):
|
|
IErrorReporter {
|
|
|
|
val errors = mutableListOf<String>()
|
|
val warnings = mutableListOf<String>()
|
|
|
|
override fun err(msg: String, position: Position) {
|
|
errors.add("${position.toClickableStr()} $msg")
|
|
}
|
|
|
|
override fun warn(msg: String, position: Position) {
|
|
warnings.add("${position.toClickableStr()} $msg")
|
|
}
|
|
|
|
override fun noErrors(): Boolean = errors.isEmpty()
|
|
|
|
override fun report() {
|
|
warnings.forEach { println("UNITTEST COMPILATION REPORT: WARNING: $it") }
|
|
errors.forEach { println("UNITTEST COMPILATION REPORT: ERROR: $it") }
|
|
if(throwExceptionAtReportIfErrors)
|
|
finalizeNumErrors(errors.size, warnings.size)
|
|
if(!keepMessagesAfterReporting) {
|
|
clear()
|
|
}
|
|
}
|
|
|
|
fun clear() {
|
|
errors.clear()
|
|
warnings.clear()
|
|
}
|
|
}
|