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