⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timestampgeneratedvalueswithcachingtest.java

📁 hibernate 开源框架的代码 jar包希望大家能喜欢
💻 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 + -