commit | f78c7816cdcfdb54dc43ffdd5f90589a7b150ff0 | [log] [tgz] |
---|---|---|
author | Neil Fuller <[email protected]> | Tue Sep 25 13:24:22 2018 +0100 |
committer | Neil Fuller <[email protected]> | Tue Sep 25 13:24:22 2018 +0100 |
tree | c2059c17ecad6859b8e2f9c376984d3f4cc92f77 | |
parent | 02588d3537372c990f6b3b0ddce9997827187ca9 [diff] |
Compile against core public SDK APIs only Explicitly compile using core_current, which are the public SDK APIs provided by the core libraries. Bug: 113148576 Test: build / treehugger Change-Id: I9412425e2aec33dd7a6d23ab18362e7f22234efa
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/