Files
kotlin-fork/libraries/stdlib/test/ExceptionTest.kt
T
2014-03-19 20:25:15 +04:00

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)
}
}