android-junit5 icon indicating copy to clipboard operation
android-junit5 copied to clipboard

Testing with JUnit 5 for Android.

Results 32 android-junit5 issues
Sort by recently updated
recently updated
newest added

I added a sample project based on my own setup: - Gradle plugin 2.x (latest released) - Robolectric (latest released) There is a Robolectric test in the sample project which...

Hotlinking https://github.com/junit-team/junit5/issues/2054 for visibility here.

With previous version Android Studio 2021.2.1.14 it works fine, with the latest stable one every single time I try to run a local instrumented test class it throws the following...

Junit anotations of super classes was not scanned and classes was not recognized as tests. `org.junit.runners.model.InvalidTestClassError: Invalid test class 'de.mannodermaus.junit5.inheritance.TestImplementation`

Moderns plugins are configured without a need of adding `classpath` (legacy config). They are added by usage of [plugins DSL](https://docs.gradle.org/current/userguide/plugins.html#sec:plugins_block) and they are retrieved from [Gradle plusings repo](https://plugins.gradle.org/) eg. https://plugins.gradle.org/plugin/uk.co.iotatech.gradle.detekt...

Users can be easier to test changes in their forked repos.

help wanted

I was getting "Expected N+1 tests, received N" errors, and at first it was very difficult to find the cause. After a thorough investigation I found that: - The "Expected...

I trying to use your library, and I can't see the test logs There is my gradle: ``` plugins { id 'com.android.application' id 'org.jetbrains.kotlin.android' id 'org.jetbrains.kotlin.plugin.lombok' version '1.9.22' id 'io.freefair.lombok'...

enhancement

Hello, Test annotated with `@ParameterizedTest` don't show any logs. I tested it with Log class and the `println()` method from Kotlin. It's working fine on a test annotated with `@Test`.

Hello, in my project we have recently decided to migrate our tests to make use of JUnit 5 and I have encountered this plugin as indeed a useful way to...

question