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;
import com.nordstrom.common.params.Params;
/**
* This interface enables implementers to provide method-related parameters to the artifact capture framework.
*/
public interface ArtifactParams extends Params {
/**
* Get the {@link AtomIdentity} test watcher for the current test class instance.
*
* @return {@code AtomIdentity} test watcher
*/
AtomIdentity getAtomIdentity();
/**
* Get the JUnit method description object for the current test class instance.
*
* @return JUnit method description object
*/
Description getDescription();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy