< prev index next >

test/compiler/jvmci/jdk.vm.ci.runtime.test/src/jdk/vm/ci/runtime/test/TestJavaMethod.java

Print this page

        

*** 28,45 **** * @run junit/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI jdk.vm.ci.runtime.test.TestJavaMethod */ package jdk.vm.ci.runtime.test; ! import static org.junit.Assert.*; ! import java.lang.reflect.*; ! import java.util.*; ! import jdk.vm.ci.meta.*; ! import org.junit.*; /** * Tests for {@link JavaMethod}. */ public class TestJavaMethod extends MethodUniverse { --- 28,48 ---- * @run junit/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI jdk.vm.ci.runtime.test.TestJavaMethod */ package jdk.vm.ci.runtime.test; ! import static org.junit.Assert.assertEquals; ! import static org.junit.Assert.assertTrue; ! import java.lang.reflect.Method; ! import java.util.Map; ! import jdk.vm.ci.meta.JavaMethod; ! import jdk.vm.ci.meta.ResolvedJavaMethod; ! import jdk.vm.ci.meta.ResolvedJavaType; ! import org.junit.Test; /** * Tests for {@link JavaMethod}. */ public class TestJavaMethod extends MethodUniverse {
< prev index next >