📄 timestampgeneratedvalueswithcachingtest.java
字号:
// $Id: TimestampGeneratedValuesWithCachingTest.java 10977 2006-12-12 23:28:04Z steve.ebersole@jboss.com $package org.hibernate.test.generated;import junit.framework.Test;import org.hibernate.dialect.Dialect;import org.hibernate.dialect.SybaseDialect;import org.hibernate.junit.functional.FunctionalTestClassTestSuite;/** * Implementation of TimestampGeneratedValuesWithCachingTest. * * @author Steve Ebersole */public class TimestampGeneratedValuesWithCachingTest extends AbstractGeneratedPropertyTest { public TimestampGeneratedValuesWithCachingTest(String x) { super( x ); } public final String[] getMappings() { return new String[] { "generated/MSSQLGeneratedPropertyEntity.hbm.xml" }; } public boolean appliesTo(Dialect dialect) { // this test is specific to Sybase/SQLServer as it is testing support // for their TIMESTAMP datatype... return ( dialect instanceof SybaseDialect ); } public static Test suite() { return new FunctionalTestClassTestSuite( TimestampGeneratedValuesWithCachingTest.class ); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -