comparison truffle/com.oracle.truffle.tck/src/com/oracle/truffle/tck/TruffleTCK.java @ 22157:dc83cc1f94f2

Using fully qualified imports
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 16 Sep 2015 11:33:22 +0200
parents 50056a161d7f
children dcb70d90c11d
comparison
equal deleted inserted replaced
22156:50056a161d7f 22157:dc83cc1f94f2
28 import com.oracle.truffle.api.interop.java.JavaInterop; 28 import com.oracle.truffle.api.interop.java.JavaInterop;
29 import com.oracle.truffle.api.source.Source; 29 import com.oracle.truffle.api.source.Source;
30 import com.oracle.truffle.api.vm.TruffleVM; 30 import com.oracle.truffle.api.vm.TruffleVM;
31 import java.io.IOException; 31 import java.io.IOException;
32 import java.util.Random; 32 import java.util.Random;
33 import static org.junit.Assert.*; 33 import static org.junit.Assert.assertEquals;
34 import static org.junit.Assert.assertNotNull;
35 import static org.junit.Assert.assertNotSame;
36 import static org.junit.Assert.assertNull;
37 import static org.junit.Assert.assertSame;
38 import static org.junit.Assert.fail;
34 import org.junit.Test; 39 import org.junit.Test;
35 40
36 /** 41 /**
37 * A collection of tests that can certify language implementation to be compliant with most recent 42 * A collection of tests that can certify language implementation to be compliant with most recent
38 * requirements of the Truffle infrastructure and tooling. Subclass, implement abstract methods and 43 * requirements of the Truffle infrastructure and tooling. Subclass, implement abstract methods and