mirror of
https://github.com/querydsl/querydsl.git
synced 2026-07-09 21:13:03 +08:00
18 lines
362 B
Java
18 lines
362 B
Java
package com.mysema.query;
|
|
|
|
import org.junit.BeforeClass;
|
|
import org.junit.experimental.categories.Category;
|
|
|
|
import com.mysema.testutil.ExternalDB;
|
|
|
|
//@Ignore
|
|
@Category(ExternalDB.class)
|
|
public class ExportTeradataTest extends ExportBaseTest {
|
|
|
|
@BeforeClass
|
|
public static void setUpClass() throws Exception {
|
|
Connections.initTeradata();
|
|
}
|
|
|
|
}
|