blob: fa8d154b8dafbb00f7971b95155879adbce27cf3 [file] [log] [blame]
Przemyslaw Szczepaniak7fe9db62016-03-15 16:35:29 +00001/*
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
9package jsr166;
10
11import java.util.concurrent.BlockingQueue;
12import java.util.concurrent.LinkedTransferQueue;
13
14// android-note: These tests have been moved into their own separate
15// classes to work around CTS issues.
16public class LinkedTransferQueueBlockingQueueTest extends BlockingQueueTest {
17 protected BlockingQueue emptyCollection() {
18 return new LinkedTransferQueue();
19 }
20}