mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-30 21:08:30 +08:00
19 lines
392 B
Java
19 lines
392 B
Java
/*
|
|
* Copyright (c) 2009 Mysema Ltd.
|
|
* All rights reserved.
|
|
*
|
|
*/
|
|
package com.mysema.query;
|
|
|
|
import org.junit.runner.RunWith;
|
|
|
|
import com.mysema.query.hql.Hibernate;
|
|
import com.mysema.query.hql.HibernateTestRunner;
|
|
|
|
@RunWith(HibernateTestRunner.class)
|
|
@Hibernate(properties = "hsqldb.properties")
|
|
public class HSQLDBStandardTest extends AbstractStandardTest{
|
|
|
|
|
|
}
|