mirror of
https://github.com/tursom/GoCollections.git
synced 2025-02-26 20:20:31 +08:00
13 lines
384 B
Go
13 lines
384 B
Go
package exceptions
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestRuntimeException_PrintStackTrace(t *testing.T) {
|
|
exception := NewRuntimeException("test1", DefaultExceptionConfig().SetCause(1))
|
|
exception = NewRuntimeException("test2", DefaultExceptionConfig().SetCause(exception))
|
|
exception = NewRuntimeException("", DefaultExceptionConfig().SetCause(exception))
|
|
exception.PrintStackTrace()
|
|
}
|