Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Android tests - Wrong test result when a RuntimeException is thrown #81

Open
1 of 3 tasks
alexandre-lefranc opened this issue Apr 3, 2024 · 0 comments
Open
1 of 3 tasks

Comments

@alexandre-lefranc
Copy link

I'm submitting a ...

  • bug report
  • feature request
  • support request => Please do not submit support request here, see note at the top of this template.

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

class CrashActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        throw IllegalStateException("Crashing!")
   }
}

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

    override fun testStarted(description: Description) {
        val uuid = testCases.get()
        val result = createTestResult(uuid, description).apply {
             status = Status.BROKEN
        }
        lifecycle.scheduleTestCase(result)
        lifecycle.startTestCase(uuid)
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant