blob: fb4634fbe4a37d4fcc4bc27ec838956365039314 [file] [log] [blame]
Calin Juravle008167d2014-05-15 19:29:37 +01001/*
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.SynchronousQueue;
13
14public class SynchronousQueueFairTest extends BlockingQueueTest {
15
16 protected BlockingQueue emptyCollection() {
17 return new SynchronousQueue(true);
18 }
19
20}