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

📄 javassistinstrumentationtest.java

📁 hibernate-distribution-3.3.1.GA-dist.zip源码
💻 JAVA
字号:
//$Id: $
package org.hibernate.test.instrument.runtime;

import org.hibernate.bytecode.BytecodeProvider;
import org.hibernate.bytecode.javassist.BytecodeProviderImpl;
import junit.framework.Test;
import junit.framework.TestSuite;

/**
 * @author Steve Ebersole
 */
public class JavassistInstrumentationTest extends AbstractTransformingClassLoaderInstrumentTestCase {
	public JavassistInstrumentationTest(String string) {
		super( string );
	}

	protected BytecodeProvider buildBytecodeProvider() {
		return new BytecodeProviderImpl();
	}

	public static Test suite() {
		return new TestSuite( JavassistInstrumentationTest.class );
	}

	public void testSetFieldInterceptor() {
		super.testSetFieldInterceptor();
	}

	public void testDirtyCheck() {
		super.testDirtyCheck();
	}

	public void testFetchAll() throws Exception {
		super.testFetchAll();
	}

	public void testLazy() {
		super.testLazy();
	}

	public void testLazyManyToOne() {
		super.testLazyManyToOne();
	}

	public void testPropertyInitialized() {
		super.testPropertyInitialized();
	}

	public void testManyToOneProxy() {
		super.testManyToOneProxy();
	}

	public void testSharedPKOneToOne() {
		super.testSharedPKOneToOne();
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -