comparison truffle/com.oracle.truffle.api.test/src/com/oracle/truffle/api/profiles/ExactClassValueProfileTest.java @ 22530:4ba1aa33fda4

Run all tests with SeparateClassLoaderRunner to ensure package private methods are accessible even if the truffle.jar is on bootclasspath.
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 06 Jan 2016 13:52:35 +0100
parents a63bda98cfdb
children
comparison
equal deleted inserted replaced
22529:2643b968c0c6 22530:4ba1aa33fda4
29 import static org.junit.Assert.assertThat; 29 import static org.junit.Assert.assertThat;
30 30
31 import org.junit.Before; 31 import org.junit.Before;
32 import org.junit.Test; 32 import org.junit.Test;
33 import org.junit.experimental.theories.DataPoint; 33 import org.junit.experimental.theories.DataPoint;
34 import org.junit.experimental.theories.Theories;
35 import org.junit.experimental.theories.Theory; 34 import org.junit.experimental.theories.Theory;
36 import org.junit.runner.RunWith; 35 import org.junit.runner.RunWith;
37 36
38 @RunWith(Theories.class) 37 @RunWith(SeparateClassloaderTestRunner.Theories.class)
39 public class ExactClassValueProfileTest { 38 public class ExactClassValueProfileTest {
40 39
41 @DataPoint public static final String O1 = new String(); 40 @DataPoint public static final String O1 = new String();
42 @DataPoint public static final String O2 = new String(); 41 @DataPoint public static final String O2 = new String();
43 @DataPoint public static final Object O3 = new Object(); 42 @DataPoint public static final Object O3 = new Object();