summaryrefslogtreecommitdiff
path: root/jsr166-tests/src/test/java/jsr166/LinkedTransferQueueCollectionTest.java
blob: 513afe3bffb2d664c0c76eba237a8c1742f89616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Written by Doug Lea with assistance from members of JCP JSR-166
 * Expert Group and released to the public domain, as explained at
 * http://creativecommons.org/publicdomain/zero/1.0/
 * Other contributors include Andrew Wright, Jeffrey Hayes,
 * Pat Fisher, Mike Judd.
 */

package jsr166;

// android-note: These tests have been moved into their own separate
// classes to work around CTS issues.
public class LinkedTransferQueueCollectionTest extends CollectionTest {
  public LinkedTransferQueueCollectionTest() {
    super(new LinkedTransferQueueTest.Implementation(), "");
  }
}