All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.snice.testing.runtime.CliArgs Maven / Gradle / Ivy

package io.snice.testing.runtime;

import net.sourceforge.argparse4j.inf.Namespace;

import java.util.List;

/**
 * Simple holder for the arguments as given on the command line.
 *
 * @param args      the raw original arguments as given on the command line.
 * @param namespace the recognized arguments wrapped in a {@link Namespace}
 * @param unknown   list of unknown arguments
 */
public record CliArgs(String[] args, Namespace namespace, List unknown) {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy