com.novocode.junit.AbstractAnnotatedFingerprint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-interface Show documentation
Show all versions of junit-interface Show documentation
An implementation of sbt's test interface for JUnit 4
The newest version!
package com.novocode.junit;
import sbt.testing.AnnotatedFingerprint;
public abstract class AbstractAnnotatedFingerprint implements AnnotatedFingerprint {
@Override
public boolean equals(Object obj) {
if (!(obj instanceof AnnotatedFingerprint)) return false;
AnnotatedFingerprint f = (AnnotatedFingerprint) obj;
return annotationName().equals(f.annotationName()) && isModule() == f.isModule();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy