com.nordstrom.automation.junit.TestObjectWatcher 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.runners.model.TestClass;
/**
* This interface defines the methods implemented by JUnit test object watchers. These watchers are registered via a
* ServiceLoader provider configuration file.
*/
public interface TestObjectWatcher {
/**
* Invoked when a test class instance gets created.
*
* @param testObj test class instance that was just created
* @param testClass {@link TestClass} object that owns this test class instance
*/
void testObjectCreated(Object testObj, TestClass testClass);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy