interface RemoveRunnerFromAtriumError : AtriumErrorAdjuster
(source)
Responsible to remove the stacktrace of the test runner(s) from an AtriumError.
It is a marker interface so that one can ComponentFactoryContainer.buildOrNull an implementation of a AtriumErrorAdjuster with the desired behaviour.
abstract fun adjustStackTrace(stackTrace: Sequence<StackTraceElement>): Sequence<StackTraceElement>
Adjusts the given Throwable.stackTrace in some way or another. |
expect class RemoveRunnerFromAtriumErrorImpl : RemoveRunnerFromAtriumError |