io.toast.tk.runtime.bean.CommandArgumentDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of toast-tk-runtime Show documentation
Show all versions of toast-tk-runtime Show documentation
Toast Toolkit Runtime Module contains covers:
- Test Source Adapters
- Test Parsing
- Test Execution
- Test Report generation
The newest version!
package io.toast.tk.runtime.bean;
import java.util.List;
public class CommandArgumentDescriptor {
public final String regex;
public final List arguments;
public CommandArgumentDescriptor(
final String regex,
final List arguments
) {
this.regex = regex;
this.arguments = arguments;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy