All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mockito.internal.junit.JUnitDetecter Maven / Gradle / Ivy

The newest version!
package org.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