io.quarkiverse.githubaction.testing.DefaultTestInputs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-github-action-testing Show documentation
Show all versions of quarkus-github-action-testing Show documentation
Test utils for Quarkus GitHub Action
package io.quarkiverse.githubaction.testing;
import java.util.Collections;
import java.util.Map;
import io.quarkiverse.githubaction.Inputs;
public class DefaultTestInputs implements Inputs {
private final Map inputs;
public DefaultTestInputs(Map inputs) {
this.inputs = Collections.unmodifiableMap(inputs);
}
@Override
public Map all() {
return inputs;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy