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

com.nordstrom.automation.junit.ArtifactParams Maven / Gradle / Ivy

There is a newer version: 17.1.1
Show newest version
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