comparison truffle/com.oracle.truffle.api.test/src/com/oracle/truffle/api/vm/ValueTest.java @ 22425:b39b603e2a1e

Organize imports after rename.
author Christian Humer <christian.humer@oracle.com>
date Wed, 02 Dec 2015 15:21:01 +0100
parents fec62e298245
children
comparison
equal deleted inserted replaced
22424:fec62e298245 22425:b39b603e2a1e
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.vm; 23 package com.oracle.truffle.api.vm;
24 24
25 import com.oracle.truffle.api.source.Source;
26 import com.oracle.truffle.api.vm.PolyglotEngine;
27 import java.io.IOException;
28 import java.util.LinkedList;
29 import java.util.List;
30 import java.util.concurrent.Executor;
31 import static org.junit.Assert.assertEquals; 25 import static org.junit.Assert.assertEquals;
32 import static org.junit.Assert.assertFalse; 26 import static org.junit.Assert.assertFalse;
33 import static org.junit.Assert.assertNotNull; 27 import static org.junit.Assert.assertNotNull;
34 import static org.junit.Assert.assertNull; 28 import static org.junit.Assert.assertNull;
35 import static org.junit.Assert.assertTrue; 29 import static org.junit.Assert.assertTrue;
36 import static org.junit.Assert.fail; 30 import static org.junit.Assert.fail;
31
32 import java.io.IOException;
33 import java.util.LinkedList;
34 import java.util.List;
35 import java.util.concurrent.Executor;
36
37 import org.junit.Test; 37 import org.junit.Test;
38
39 import com.oracle.truffle.api.source.Source;
38 40
39 public class ValueTest implements Executor { 41 public class ValueTest implements Executor {
40 private List<Runnable> pending = new LinkedList<>(); 42 private List<Runnable> pending = new LinkedList<>();
41 43
42 @Test 44 @Test