46 lines
1.1 KiB
Kotlin
46 lines
1.1 KiB
Kotlin
package test.collections
|
|
|
|
import kotlin.test.*
|
|
|
|
import java.util.*
|
|
import org.junit.Test as test
|
|
import java.io.PrintWriter
|
|
import java.io.*
|
|
|
|
class ExceptionTest {
|
|
|
|
test fun printStackTraceOnRuntimeException() {
|
|
assertPrintStackTrace(RuntimeException("Crikey!"))
|
|
assertPrintStackTraceStream(RuntimeException("Crikey2"))
|
|
}
|
|
|
|
test fun printStackTraceOnError() {
|
|
assertPrintStackTrace(Error("Oh dear"))
|
|
assertPrintStackTraceStream(Error("Oh dear2"))
|
|
}
|
|
|
|
|
|
fun assertPrintStackTrace(t: Throwable) {
|
|
val buffer = StringWriter()
|
|
val writer = PrintWriter(buffer)
|
|
t.printStackTrace(writer)
|
|
println(buffer)
|
|
}
|
|
|
|
fun assertPrintStackTraceStream(t: Throwable) {
|
|
val byteBuffer = ByteArrayOutputStream()
|
|
|
|
PrintStream(byteBuffer).use {
|
|
t.printStackTrace(it)
|
|
}
|
|
|
|
val stream = PrintStream(byteBuffer)
|
|
stream.use {
|
|
t.printStackTrace(stream)
|
|
}
|
|
|
|
val bytes = assertNotNull(byteBuffer.toByteArray())
|
|
assertTrue(bytes.size > 10)
|
|
}
|
|
}
|