From: <hib...@li...> - 2006-03-04 00:42:23
|
Author: ste...@jb... Date: 2006-03-03 19:42:21 -0500 (Fri, 03 Mar 2006) New Revision: 9549 Added: trunk/Hibernate3/test/org/hibernate/test/instrument/runtime/CGLIBInstrumentationTest.java Log: added CGLIBInstrumentationTest to AllTests (renamed from CGLIBTest) Copied: trunk/Hibernate3/test/org/hibernate/test/instrument/runtime/CGLIBInstrumentationTest.java (from rev 9538, trunk/Hibernate3/test/org/hibernate/test/instrument/runtime/CGLIBTest.java) =================================================================== --- trunk/Hibernate3/test/org/hibernate/test/instrument/runtime/CGLIBTest.java 2006-03-04 00:17:57 UTC (rev 9538) +++ trunk/Hibernate3/test/org/hibernate/test/instrument/runtime/CGLIBInstrumentationTest.java 2006-03-04 00:42:21 UTC (rev 9549) @@ -0,0 +1,19 @@ +package org.hibernate.test.instrument.runtime; + +import org.hibernate.bytecode.BytecodeProvider; +import org.hibernate.bytecode.cglib.BytecodeProviderImpl; +import junit.framework.Test; +import junit.framework.TestSuite; + +/** + * @author Steve Ebersole + */ +public class CGLIBInstrumentationTest extends AbstractTransformingClassLoaderInstrumentTestCase { + protected BytecodeProvider buildBytecodeProvider() { + return new BytecodeProviderImpl(); + } + + public static Test suite() { + return new TestSuite( CGLIBInstrumentationTest.class ); + } +} |