commit | 92b5e663ada944a1e38e9acc79118a6a7867df7b | [log] [tgz] |
---|---|---|
author | Paul Duffin <[email protected]> | Tue Nov 29 12:45:20 2016 +0000 |
committer | Paul Duffin <[email protected]> | Tue Nov 29 12:45:20 2016 +0000 |
tree | fad8dfb92271dc8fa02f180bd9017d81e37c2ba7 | |
parent | fe726a1ab7e9f23c8e2dbba37d4e02944aef15b2 [diff] |
Use junit-host instead of junit Bug: 30188076 Test: make checkbuild Change-Id: I7cb06fd4ebe00601d176fee3b1080c8a46930bbb
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/