From da0d8415e680bb322a7f1e17d97397b4b0e459cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yoann=20Rodi=C3=A8re?= Date: Mon, 14 Dec 2020 12:35:55 +0100 Subject: [PATCH] HHH-14371 Move tests specific to Javassist to the appropriate source set MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise they won't be executed with the appropriate JVM args. Signed-off-by: Yoann Rodière --- .../test/bytecode/ReflectionOptimizerTest.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/hibernate-core/src/test/java/org/hibernate/test/bytecode/ReflectionOptimizerTest.java b/hibernate-core/src/test/java/org/hibernate/test/bytecode/ReflectionOptimizerTest.java index 2df2a00dbb..708287de90 100644 --- a/hibernate-core/src/test/java/org/hibernate/test/bytecode/ReflectionOptimizerTest.java +++ b/hibernate-core/src/test/java/org/hibernate/test/bytecode/ReflectionOptimizerTest.java @@ -9,7 +9,6 @@ package org.hibernate.test.bytecode; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; -import org.hibernate.bytecode.internal.javassist.BulkAccessor; import org.hibernate.bytecode.spi.BytecodeProvider; import org.hibernate.bytecode.spi.ReflectionOptimizer; import org.hibernate.cfg.Environment; @@ -21,15 +20,6 @@ import org.junit.Test; * @author Steve Ebersole */ public class ReflectionOptimizerTest extends BaseUnitTestCase { - @Test - public void testBulkAccessorDirectly() { - BulkAccessor bulkAccessor = BulkAccessor.create( - Bean.class, - BeanReflectionHelper.getGetterNames(), - BeanReflectionHelper.getSetterNames(), - BeanReflectionHelper.getTypes() - ); - } @Test public void testReflectionOptimization() {