expect class AtriumError : AssertionError
Indicates that an assertion made by Atrium failed.
Its stack trace (stackTrace
in JVM, stack
in JS) might be filtered so that reporting does not include
all stack frames. This depends on the chosen AtriumErrorAdjuster - so theoretically more than the stack trace
could be adjusted or nothing at all.
To create such an error you need to use the Companion.create function.
fun create(message: String, atriumErrorAdjuster: AtriumErrorAdjuster): AtriumError
Creates an AtriumError and adjusts it with the given atriumErrorAdjuster before it is returned. |