< prev index next >

test/compiler/jvmci/jdk.vm.ci.options.test/src/jdk/vm/ci/options/test/TestOptionValue.java

Print this page

        

*** 27,45 **** * @run junit jdk.vm.ci.options.test.TestOptionValue */ package jdk.vm.ci.options.test; ! import static jdk.vm.ci.options.test.TestOptionValue.Options.*; ! import static org.junit.Assert.*; ! import java.util.*; ! ! import jdk.vm.ci.options.*; ! import jdk.vm.ci.options.OptionValue.*; ! ! import org.junit.*; @SuppressWarnings("try") public class TestOptionValue { public static class Options { --- 27,51 ---- * @run junit jdk.vm.ci.options.test.TestOptionValue */ package jdk.vm.ci.options.test; ! import static jdk.vm.ci.options.test.TestOptionValue.Options.Mutable; ! import static jdk.vm.ci.options.test.TestOptionValue.Options.SecondMutable; ! import static jdk.vm.ci.options.test.TestOptionValue.Options.Stable; ! import static org.junit.Assert.assertEquals; ! import static org.junit.Assert.assertTrue; ! import static org.junit.Assert.fail; ! ! import java.util.Arrays; ! ! import jdk.vm.ci.options.OptionDescriptor; ! import jdk.vm.ci.options.OptionValue; ! import jdk.vm.ci.options.OptionValue.OverrideScope; ! import jdk.vm.ci.options.StableOptionValue; ! import org.junit.Test; @SuppressWarnings("try") public class TestOptionValue { public static class Options {
< prev index next >