com.andrewjamesjohnson.junit.tuple.Tuple1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of example-application Show documentation
Show all versions of example-application Show documentation
Library for parameterizing individual test methods in JUnit
The newest version!
package com.andrewjamesjohnson.junit.tuple;
import java.util.Arrays;
import java.util.Collection;
public class Tuple1 implements TupleParameter {
public static Tuple1 of(A _1) {
return new Tuple1<>(_1);
}
public A _1;
private Tuple1(A _1) {
this._1 = _1;
}
@Override
public Collection
© 2015 - 2025 Weber Informatics LLC | Privacy Policy