use of org.junit.experimental.theories.suppliers.TestedOnSupplier in project junit4 by junit-team.
the class TestedOnSupplierTest method descriptionStatesParameterName.
@Test
public void descriptionStatesParameterName() throws Exception {
TestedOnSupplier supplier = new TestedOnSupplier();
List<PotentialAssignment> assignments = supplier.getValueSources(signatureOfFoo());
assertThat(assignments.get(0).getDescription(), is("\"1\" <from ints>"));
}
Aggregations