com.nordstrom.automation.junit.RunnerWatcher 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;
public interface RunnerWatcher extends JUnitWatcher {
/**
* Called when a test runner is about to run.
*
* @param runner JUnit test runner
*/
public void runStarted(Object runner);
/**
* Called when a test runner has finished running.
*
* @param runner JUnit test runner
*/
public void runFinished(Object runner);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy