Testat Sammlung
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
260 B

package solution_2;
import testat_2.ALowPriceFinder;
import testat_2.ALowPriceFinderTest;
public class LowPriceFinderTest extends ALowPriceFinderTest {
@Override
protected ALowPriceFinder getInstance() {
return new LowPriceFinder(5);
}
}