LoginSystem/src/test/java/fr/xephi/authme/datasource/SQLiteResourceClosingTest.java
ljacqu efc06ef2a6 #1255 Create resource-closing tests for the MySQL extensions
- Remove test runs with different hash algorithms in the abstract super class
- Create resource-closing tests for the new extension classes
2017-07-23 17:29:36 +02:00

23 lines
564 B
Java

package fr.xephi.authme.datasource;
import fr.xephi.authme.settings.Settings;
import java.lang.reflect.Method;
import java.sql.Connection;
/**
* Resource closing test for {@link SQLite}.
*/
public class SQLiteResourceClosingTest extends AbstractSqlDataSourceResourceClosingTest {
public SQLiteResourceClosingTest(Method method, String name) {
super(method, name);
}
@Override
protected DataSource createDataSource(Settings settings, Connection connection) throws Exception {
return new SQLite(settings, connection);
}
}