mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-19 21:00:53 +08:00
26 lines
607 B
Java
26 lines
607 B
Java
package com.mysema.query;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.BeforeClass;
|
|
import org.junit.runner.RunWith;
|
|
|
|
import com.mysema.query.sql.DerbyTemplates;
|
|
import com.mysema.testutil.FilteringTestRunner;
|
|
import com.mysema.testutil.Label;
|
|
|
|
@RunWith(FilteringTestRunner.class)
|
|
@Label(Target.DERBY)
|
|
public class UpdateDerbyTest extends UpdateBaseTest{
|
|
|
|
@BeforeClass
|
|
public static void setUp() throws Exception {
|
|
Connections.initDerby();
|
|
}
|
|
|
|
@Before
|
|
public void setUpForTest() {
|
|
dialect = new DerbyTemplates().newLineToSingleSpace();
|
|
}
|
|
|
|
}
|