comparison truffle/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/utilities/ExactClassValueProfileTest.java @ 22157:dc83cc1f94f2

Using fully qualified imports
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 16 Sep 2015 11:33:22 +0200
parents 02015aac6be9
children
comparison
equal deleted inserted replaced
22156:50056a161d7f 22157:dc83cc1f94f2
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 */ 22 */
23 package com.oracle.truffle.api.test.utilities; 23 package com.oracle.truffle.api.test.utilities;
24 24
25 import static org.hamcrest.CoreMatchers.*; 25 import com.oracle.truffle.api.utilities.ValueProfile;
26 import static org.junit.Assert.*;
27
28 import org.junit.*;
29 import org.junit.experimental.theories.*;
30 import org.junit.runner.*;
31
32 import com.oracle.truffle.api.utilities.*;
33 import java.lang.reflect.Method; 26 import java.lang.reflect.Method;
27 import static org.hamcrest.CoreMatchers.is;
28 import static org.junit.Assert.assertEquals;
29 import static org.junit.Assert.assertNull;
30 import static org.junit.Assert.assertThat;
31 import org.junit.Before;
32 import org.junit.Test;
33 import org.junit.experimental.theories.DataPoint;
34 import org.junit.experimental.theories.Theories;
35 import org.junit.experimental.theories.Theory;
36 import org.junit.runner.RunWith;
34 37
35 @RunWith(Theories.class) 38 @RunWith(Theories.class)
36 public class ExactClassValueProfileTest { 39 public class ExactClassValueProfileTest {
37 40
38 @DataPoint public static final String O1 = new String(); 41 @DataPoint public static final String O1 = new String();