commit | e615c5896147f3fdc849b5e038243634b2893616 | [log] [tgz] |
---|---|---|
author | Bob Badour <[email protected]> | Fri Feb 12 18:40:16 2021 -0800 |
committer | Bob Badour <[email protected]> | Fri Feb 12 18:40:16 2021 -0800 |
tree | 5d22f208c5c59620629788d75c14728e06be2c93 | |
parent | e21cb0ad35bbc08f5143eb5c9ba02e08806ef08a [diff] |
[LSC] Add LOCAL_LICENSE_KINDS to external/junit-params Added SPDX-license-identifier-Apache-2.0 to: Android.bp Bug: 68860345 Bug: 151177513 Bug: 151953481 Test: m all Exempt-From-Owner-Approval: janitorial work Change-Id: I68439a22abd65fb246be3585940f9e4c49fa0ada
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/