comparison truffle/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/utilities/IdentityValueProfileTest.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.assertThat;
30 import org.junit.Before;
31 import org.junit.Test;
32 import org.junit.experimental.theories.DataPoint;
33 import org.junit.experimental.theories.Theories;
34 import org.junit.experimental.theories.Theory;
35 import org.junit.runner.RunWith;
34 36
35 @RunWith(Theories.class) 37 @RunWith(Theories.class)
36 public class IdentityValueProfileTest { 38 public class IdentityValueProfileTest {
37 39
38 @DataPoint public static final String O1 = new String(); 40 @DataPoint public static final String O1 = new String();