Update collection config parameter config

This commit is contained in:
RatzzFatzz
2024-11-22 00:21:13 +01:00
parent 4714ef8db1
commit 939f6053dd
6 changed files with 63 additions and 105 deletions

View File

@@ -23,16 +23,6 @@ import static org.junit.jupiter.api.Assertions.*;
class IntegerConfigParameterTest {
private static CommandLineParser parser;
private static Options options;
@BeforeAll
static void before() {
parser = new DefaultParser();
options = new Options();
options.addOption(optionOf(THREADS, "t", THREADS.args()));
}
private static Stream<Arguments> provideTestCases() {
return Stream.of(
Arguments.of(args(), 2, (Function<Config, Integer>) Config::getThreads),