commit | 81fb476f53f1d5b0cd001975ca1bac37ae9da038 | [log] [tgz] |
---|---|---|
author | Bob Badour <[email protected]> | Fri Apr 24 09:48:47 2020 +0000 |
committer | Automerger Merge Worker <[email protected]> | Fri Apr 24 09:48:47 2020 +0000 |
tree | 0e8a00642470c801640bde3396ce7e6681756dc2 | |
parent | ed4bc1eedea9e248f690ed682e4bd1b65863268d [diff] | |
parent | e21cb0ad35bbc08f5143eb5c9ba02e08806ef08a [diff] |
Add license type: Apache2 is a NOTICE license am: 3a90a1411f am: 96cef880fa am: 2d13478f2d am: fb7c4a6218 am: e21cb0ad35 Change-Id: Ic50ac4e1f9a5e295e0304a6486e14dff38620dfd
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/