commit | efb78af77659577413843f8e7daf190f10caf155 | [log] [tgz] |
---|---|---|
author | Cole Faust <[email protected]> | Wed Oct 26 18:54:19 2022 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Oct 26 18:54:19 2022 +0000 |
tree | 1a32331a40f7a70e590b0987ccff60c603ab83e3 | |
parent | c6dc3cfa9ff21568d892e904744055b66128cfe8 [diff] | |
parent | 598f1fad2384c420d3e1f45dfeb604899a39135c [diff] |
Fix errorprone warnings that should be errors am: 598f1fad23 Original change: https://android-review.googlesource.com/c/platform/external/junit-params/+/2256448 Change-Id: I92228287f528e93e7b7a5fc172737c63ca395593 Signed-off-by: Automerger Merge Worker <[email protected]>
Parameterised tests that don't suck
@RunWith(JUnitParamsRunner.class) public class PersonTest { @Test @Parameters({"17, false", "22, true" }) public void personIsAdult(int age, boolean valid) throws Exception { assertThat(new Person(age).isAdult(), is(valid)); } }
See more examples
JUnitParams project adds a new runner to JUnit and provides much easier and readable parametrised tests for JUnit >=4.6.
Main differences to standard JUnit Parametrised runner:
JUnitParams is available as Maven artifact:
<dependency> <groupId>pl.pragmatists</groupId> <artifactId>JUnitParams</artifactId> <version>1.0.4</version> <scope>test</scope> </dependency>
If you want to see just one simple test class with all main ways to use JUnitParams see here: https://github.com/Pragmatists/junitparams/tree/master/src/test/java/junitparams/usage
You can also have a look at Wiki:Quickstart
Note: We are currently moving the project from Google Code to Github. Some information may still be accessible only at https://code.google.com/p/junitparams/