Home | History | Annotate | Download | only in jsr166
      1 /*
      2  * Written by Doug Lea with assistance from members of JCP JSR-166
      3  * Expert Group and released to the public domain, as explained at
      4  * http://creativecommons.org/publicdomain/zero/1.0/
      5  * Other contributors include Andrew Wright, Jeffrey Hayes,
      6  * Pat Fisher, Mike Judd.
      7  */
      8 
      9 package jsr166;
     10 
     11 // android-note: These tests have been moved into their own separate
     12 // classes to work around CTS issues.
     13 public class LinkedTransferQueueCollectionTest extends CollectionTest {
     14   public LinkedTransferQueueCollectionTest() {
     15     super(new LinkedTransferQueueTest.Implementation(), "");
     16   }
     17 }
     18