ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/ArrayListTest.java
(Generate patch)

Comparing jsr166/src/test/tck/ArrayListTest.java (file contents):
Revision 1.3 by jsr166, Tue Nov 15 23:25:44 2016 UTC vs.
Revision 1.5 by jsr166, Sat Mar 11 17:33:32 2017 UTC

# Line 6 | Line 6
6   */
7  
8   import java.util.ArrayList;
9 import java.util.Collection;
9   import java.util.List;
10  
11   import junit.framework.Test;
13 import junit.framework.TestSuite;
12  
13   public class ArrayListTest extends JSR166TestCase {
14      public static void main(String[] args) {
# Line 30 | Line 28 | public class ArrayListTest extends JSR16
28                  return super.emptyCollection().subList(0, 0);
29              }
30          }
31 <        return atLeastJava9()
34 <            ? newTestSuite(
31 >        return newTestSuite(
32                  // ArrayListTest.class,
33                  CollectionTest.testSuite(new Implementation()),
34 <                CollectionTest.testSuite(new SubListImplementation()))
38 <            : newTestSuite(
39 <                CollectionTest.testSuite(new Implementation()));
34 >                CollectionTest.testSuite(new SubListImplementation()));
35      }
36  
37   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines