- Remove test runs with different hash algorithms in the abstract super class - Create resource-closing tests for the new extension classes
22 lines
600 B
Java
22 lines
600 B
Java
package fr.xephi.authme.datasource.mysqlextensions;
|
|
|
|
import fr.xephi.authme.datasource.Columns;
|
|
import fr.xephi.authme.settings.Settings;
|
|
|
|
import java.lang.reflect.Method;
|
|
|
|
/**
|
|
* Resource closing test for {@link Ipb4Extension}.
|
|
*/
|
|
public class Ipb4ExtensionResourceClosingTest extends AbstractMySqlExtensionResourceClosingTest {
|
|
|
|
public Ipb4ExtensionResourceClosingTest(Method method, String name) {
|
|
super(method, name);
|
|
}
|
|
|
|
@Override
|
|
protected MySqlExtension createExtension(Settings settings, Columns columns) {
|
|
return new Ipb4Extension(settings, columns);
|
|
}
|
|
}
|