
sbt.testing.TestSelector Maven / Gradle / Ivy
The newest version!
package sbt.testing;
import java.io.Serializable;
/**
* Information in addition to a test class name that identifies a test directly contained in the suite
* whose class had the fully qualified name specified as the fullyQualifiedName
attribute
* passed to the event.
*/
public final class TestSelector extends Selector implements Serializable {
private String _testName;
/**
* Constructs a new TestSelector
with passed testName
.
*
* @param testName the name of the test about which an event as fired.
*/
public TestSelector(String testName) {
if (testName == null) {
throw new NullPointerException("testName was null");
}
_testName = testName;
}
/**
* The name of a test about which an event was fired.
*
* @return the name of the test
*/
public String testName() {
return _testName;
}
@Override public boolean equals(Object o) {
boolean retVal = false;
if (o instanceof TestSelector) {
TestSelector ts = (TestSelector) o;
retVal = ts._testName == _testName;
}
return retVal;
}
@Override public int hashCode() {
return _testName.hashCode();
}
@Override public String toString() {
return "TestSelector(" + _testName + ")";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy