Replies: 1 comment
-
Solving this may be harder than just fixing a bug somewhere. The Android CLI does not seems to run named parameterized tests with non-digital name. See this Gist as an example (the test come from #48): https://gist.github.com/TurpIF/b3968f9aa2aad8fce16e988200f17647 The name of the parameterized tests are:
In the Gist there is no trace of the When running the test on the whole class, there is no such issue. But applying this to Gordon seems to need a big refactor. You can even experiment this bad behaviour on IntelliJ/Android Studio. When running test on the whole class, all parameterized tests are shown. When running only one method, then only the |
Beta Was this translation helpful? Give feedback.
-
Hello,
When using parameterized tests that are named (ie: using the
name
argument in@Parameterized.Parameters
), then all tests are ignored.The sysout produced in Gradle:
The expectation is that tests should run correctly.
Note that if the
name
argument is removed, we end up with failing test because of #46Beta Was this translation helpful? Give feedback.
All reactions