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

Using fully qualified imports
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 16 Sep 2015 11:33:22 +0200
parents 9c8c0937da41
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.PrimitiveValueProfile;
26 import static org.junit.Assert.*; 26 import com.oracle.truffle.api.utilities.ValueProfile;
27 27 import static org.hamcrest.CoreMatchers.is;
28 import org.junit.*; 28 import static org.junit.Assert.assertEquals;
29 import org.junit.experimental.theories.*; 29 import static org.junit.Assert.assertFalse;
30 import org.junit.runner.*; 30 import static org.junit.Assert.assertSame;
31 31 import static org.junit.Assert.assertThat;
32 import com.oracle.truffle.api.utilities.*; 32 import static org.junit.Assert.assertTrue;
33 import org.junit.Before;
34 import org.junit.Test;
35 import org.junit.experimental.theories.DataPoint;
36 import org.junit.experimental.theories.Theories;
37 import org.junit.experimental.theories.Theory;
38 import org.junit.runner.RunWith;
33 39
34 @RunWith(Theories.class) 40 @RunWith(Theories.class)
35 public class PrimitiveValueProfileTest { 41 public class PrimitiveValueProfileTest {
36 42
37 @DataPoint public static final String O1 = new String(); 43 @DataPoint public static final String O1 = new String();