commit | 00303d4fa542d56a9db2d2decfc0f19b128ca450 | [log] [tgz] |
---|---|---|
author | Paul Duffin <[email protected]> | Tue Nov 29 14:33:27 2016 +0000 |
committer | android-build-merger <[email protected]> | Tue Nov 29 14:33:27 2016 +0000 |
tree | fad8dfb92271dc8fa02f180bd9017d81e37c2ba7 | |
parent | 3c0b47b663a5e46739b94c98c78ed1bf8b537762 [diff] | |
parent | e9e6cb4a30d50e57d24ac83536d26b28bc53d546 [diff] |
Use junit-host instead of junit am: 92b5e663ad am: e9e6cb4a30 Change-Id: I60308c4903607b007ba2de8d7f1d2f5abd905284
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/