com.fitbur.mockito.internal.junit.JUnitDetecter Maven / Gradle / Ivy
package com.fitbur.mockito.internal.junit;
class JUnitDetecter {
private boolean hasJUnit;
JUnitDetecter() {
try {
Class.forName("junit.framework.ComparisonFailure");
hasJUnit = true;
} catch (Throwable t) {
hasJUnit = false;
}
}
public boolean hasJUnit() {
return hasJUnit;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy