com.nordstrom.automation.junit.ArtifactParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-foundation Show documentation
Show all versions of junit-foundation Show documentation
This is the foundation framework for JUnit automation
package com.nordstrom.automation.junit;
import org.junit.runner.Description;
/**
* This interface enables implementers to provide method-related parameters to the artifact capture framework.
*/
public interface ArtifactParams {
/**
* Get get JUnit method description object for the current test class instance.
*
* @return JUnit method description object
*/
Description getDescription();
/**
* Get the parameters associated with this test class instance.
*
* @return array of test class parameters
*/
default Object[] getParameters() {
return new Object[0];
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy