You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I suggest to set a default test result status in fun testStarted()
override fun testStarted(description: Description) {
val uuid = testCases.get()
val result = createTestResult(uuid, description).apply {
status = Status.BROKEN
}
lifecycle.scheduleTestCase(result)
lifecycle.startTestCase(uuid)
}
The text was updated successfully, but these errors were encountered:
Getting the same problem
I think it is critical, since you can skip the crash and not notice that the test has not been added to the report
no results if there was a bug in the developer's code: which caused the crash (reproduced with: NullPointerExeception, IllegalStateException etc)
I'm submitting a ...
What is the current behavior?
When using Android tests and throwing a RuntimeException in the app, the test result is Success instead of Broken or Failed.
If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem
Please tell us about your environment:
Allure kotlin -> 2.4.0
Allure version (to generate reports) -> 2.27.0
Other information
I suggest to set a default test result status in
fun testStarted()
The text was updated successfully, but these errors were encountered: