Aurimas Liutikas | 93554f2 | 2022-04-19 16:51:35 -0700 | [diff] [blame] | 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 | import java.util.concurrent.BlockingQueue; |
| 12 | import java.util.concurrent.LinkedBlockingQueue; |
| 13 | |
| 14 | public class LinkedBlockingQueueBoundedTest extends BlockingQueueTest { |
| 15 | |
| 16 | protected BlockingQueue emptyCollection() { |
| 17 | return new LinkedBlockingQueue(SIZE); |
| 18 | } |
| 19 | |
| 20 | } |