org.mockito.internal.configuration.plugins.DefaultPluginSwitch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockito-all Show documentation
Show all versions of mockito-all Show documentation
Mock objects library for java
package org.mockito.internal.configuration.plugins;
import org.mockito.plugins.PluginSwitch;
class DefaultPluginSwitch implements PluginSwitch {
public boolean isEnabled(String pluginClassName) {
return true;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy