mirror of
https://github.com/querydsl/querydsl.git
synced 2026-07-06 21:05:50 +08:00
19 lines
422 B
Java
19 lines
422 B
Java
package com.mysema.query.suites;
|
|
|
|
import org.junit.BeforeClass;
|
|
|
|
import com.mysema.query.Connections;
|
|
import com.mysema.query.sql.SQLiteTemplates;
|
|
|
|
public class SQLiteSuiteTest extends AbstractSuite {
|
|
|
|
@BeforeClass
|
|
public static void setUp() throws Exception {
|
|
Connections.initSQLite();
|
|
Connections.setTemplates(new SQLiteTemplates(){{
|
|
newLineToSingleSpace();
|
|
}});
|
|
}
|
|
|
|
}
|