org.junit.experimental.theories.suppliers.TestedOnSupplier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtdata-lib-curves4 Show documentation
Show all versions of virtdata-lib-curves4 Show documentation
Statistical sampling library for use in virtualdataset libraries, based on apache commons math 4
package org.junit.experimental.theories.suppliers;
import java.util.ArrayList;
import java.util.List;
import org.junit.experimental.theories.ParameterSignature;
import org.junit.experimental.theories.ParameterSupplier;
import org.junit.experimental.theories.PotentialAssignment;
/**
* @see org.junit.experimental.theories.suppliers.TestedOn
* @see org.junit.experimental.theories.ParameterSupplier
*/
public class TestedOnSupplier extends ParameterSupplier {
@Override
public List getValueSources(ParameterSignature sig) {
List list = new ArrayList();
TestedOn testedOn = sig.getAnnotation(TestedOn.class);
int[] ints = testedOn.ints();
for (final int i : ints) {
list.add(PotentialAssignment.forValue("ints", i));
}
return list;
}
}