diff options
Diffstat (limited to 'jsr166-tests/src/test/java/jsr166/EntryTest.java')
-rw-r--r-- | jsr166-tests/src/test/java/jsr166/EntryTest.java | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/jsr166-tests/src/test/java/jsr166/EntryTest.java b/jsr166-tests/src/test/java/jsr166/EntryTest.java index 4387a53..d141a84 100644 --- a/jsr166-tests/src/test/java/jsr166/EntryTest.java +++ b/jsr166-tests/src/test/java/jsr166/EntryTest.java @@ -6,10 +6,22 @@ package jsr166; -import junit.framework.*; -import java.util.*; +import java.util.AbstractMap; +import java.util.Map; + +import junit.framework.Test; +import junit.framework.TestSuite; public class EntryTest extends JSR166TestCase { + // android-note: Removed because the CTS runner does a bad job of + // retrying tests that have suite() declarations. + // + // public static void main(String[] args) { + // main(suite(), args); + // } + // public static Test suite() { + // return new TestSuite(...); + // } static final String k1 = "1"; static final String v1 = "a"; |