Parameterised tests, it works with any Runner (Robolectric, Spring, Mockito, and more!)
public class CalculatorTest {
@Rule
public WithParamsRule params = new WithParamsRule();
@Test
@WithParams({"2", "4", "8", "1000"})
public void isEven() throws Exception {
assertTrue(calculator.isEven(params.asInt()));
}
}public class CalculatorTest {
@Rule
public WithParamsRule params = new WithParamsRule();
@Test
@WithParams(
names = {"n1", "n2", "result"},
value = {
"1", "2", "3",
"11", "-2", "9"
}
)
public void sum() throws Exception {
int n1 = params.asInt("n1");
int n2 = params.asInt("n2");
int result = calculator.sum(n1, n2);
assertEquals(params.asInt("result"), result);
}
}Runs the test twice: once with true and once with false. No need to list the values manually.
@Test
@WithBooleanParams
public void toggleFeature() {
boolean enabled = params.asBoolean();
feature.setEnabled(enabled);
assertEquals(enabled, feature.isEnabled());
}Runs the test twice: once with the provided non-null value and once with null.
Ideal for verifying that your code handles null inputs gracefully.
@Test
@WithNullParam("hello")
public void handlesNull() {
String value = params.get(); // "hello" on the first run, null on the second
processValue(value); // must not throw for either case
}Use the optional name attribute for named parameters:
@Test
@WithNullParam(value = "hello", name = "input")
public void handlesNullNamed() {
String value = params.get("input");
}Automatically runs the test once for every constant in the specified enum class.
The current constant is retrieved via the type-safe asEnum(Class) accessor.
enum Color { RED, GREEN, BLUE }
@Test
@WithEnumParams(Color.class)
public void testAllColors() {
Color color = params.asEnum(Color.class);
assertNotNull(color);
renderBackground(color); // called for RED, GREEN, and BLUE
}Use the optional name attribute for named parameters:
@Test
@WithEnumParams(value = Color.class, name = "color")
public void testAllColorsNamed() {
Color color = params.asEnum("color", Color.class);
assertNotNull(color);
}Reads parameter sets from a static method in the test class. Avoids large annotation arrays and keeps complex data sets as real Java code.
The provider method must be static, accept no arguments, and return String[][]
where each inner array is one test iteration. The names attribute maps column
indices to parameter names.
@Test
@WithParamsSource(value = "provideNumbers", names = {"n1", "n2", "result"})
public void sum() {
int n1 = params.asInt("n1");
int n2 = params.asInt("n2");
assertEquals(params.asInt("result"), calculator.sum(n1, n2));
}
static String[][] provideNumbers() {
return new String[][] {
{"1", "2", "3"},
{"11", "-2", "9"}
};
}Single-parameter shorthand (default name "param1"):
@Test
@WithParamsSource("provideWords")
public void wordIsNotEmpty() {
String word = params.get();
assertFalse(word.isEmpty());
}
static String[][] provideWords() {
return new String[][] { {"hello"}, {"world"}, {"foo"} };
}Converts the current string parameter value to an enum constant by name.
Returns null if the stored value is null (e.g. when used with @WithNullParam).
// default parameter
Color color = params.asEnum(Color.class);
// named parameter
Color color = params.asEnum("colorParam", Color.class);The accessor works with any enum and complements the existing typed accessors
(asInt(), asBoolean(), asDouble(), etc.).
Kotlin is supported, with some small differences.
Create rule:
@get:Rule var params = WithParamsRule()
The format for the arrays in the annotations
@WithParams(
names = ["n1", "n2", "result"],
value = [
"1", "2", "3",
"11", "-2", "9"
]
)
JUnitWithParams uses the rule WithParamsRule to parse the annotation @WithParams
Very similar to the great library JUnitParams but not using a JUnit runner, this allows to use parameterised tests with the most used runners (Spring, Robolectric, AndroidJUnit4)
- The current stable version is
1.0.7
JUnitWithParams works fine in android, it is compiled with JDK 1.6 and tested on real projects.
JUnitWithParams is published to GitHub Packages.
Gradle:
repositories {
maven { url "https://maven.pkg.github.com/ignaciotcrespo/JUnitWithParams" }
}
dependencies {
testImplementation 'com.github.ignaciotcrespo:junitwithparams:1.0.7'
}Maven:
<repositories>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/ignaciotcrespo/JUnitWithParams</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.ignaciotcrespo</groupId>
<artifactId>junitwithparams</artifactId>
<version>1.0.7</version>
<scope>test</scope>
</dependency>Note: GitHub Packages requires authentication. See GitHub's guide for setup.
Create and push a version tag:
git tag v1.0.8
git push origin v1.0.8This triggers a GitHub Actions workflow that publishes the artifact to GitHub Packages. The version is derived from the tag name automatically.
JUnitWithParams is a work in progress, it is stable but of course there are still some edge cases not covered.
You are welcome to contribute to the project, feel free to create a pull request with your changes.
For questions, suggestions or feedback, create an issue in this repository.
JUnitWithParams is released under the .
The MIT License
Copyright (c) 2017, Ignacio Tomas Crespo (itcrespo@gmail.com)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.