mirror of
https://github.com/querydsl/querydsl.git
synced 2026-07-06 21:05:50 +08:00
19 lines
382 B
Java
19 lines
382 B
Java
package com.mysema.query.suites;
|
|
|
|
import java.sql.SQLException;
|
|
|
|
import org.junit.AfterClass;
|
|
import org.junit.runner.RunWith;
|
|
|
|
import com.mysema.query.Connections;
|
|
import com.mysema.testutil.CustomSuite;
|
|
|
|
@RunWith(CustomSuite.class)
|
|
public abstract class AbstractSuite {
|
|
|
|
@AfterClass
|
|
public static void tearDown() throws SQLException {
|
|
Connections.close();
|
|
}
|
|
|
|
} |