ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/LinkedBlockingQueueTest.java
(Generate patch)

Comparing jsr166/src/test/tck/LinkedBlockingQueueTest.java (file contents):
Revision 1.28 by dl, Wed Sep 29 12:33:48 2010 UTC vs.
Revision 1.29 by jsr166, Wed Oct 6 07:49:22 2010 UTC

# Line 14 | Line 14 | import java.io.*;
14  
15   public class LinkedBlockingQueueTest extends JSR166TestCase {
16  
17 +    public static class Unbounded extends BlockingQueueTest {
18 +        protected BlockingQueue emptyCollection() {
19 +            return new LinkedBlockingQueue();
20 +        }
21 +    }
22 +
23 +    public static class Bounded extends BlockingQueueTest {
24 +        protected BlockingQueue emptyCollection() {
25 +            return new LinkedBlockingQueue(20);
26 +        }
27 +    }
28 +
29      public static void main(String[] args) {
30          junit.textui.TestRunner.run(suite());
31      }
32  
33      public static Test suite() {
34 <        return new TestSuite(LinkedBlockingQueueTest.class);
34 >        return newTestSuite(LinkedBlockingQueueTest.class,
35 >                            new Unbounded().testSuite(),
36 >                            new Bounded().testSuite());
37      }
38  
39  
# Line 459 | Line 473 | public class LinkedBlockingQueueTest ext
473          t.interrupt();
474          t.join();
475      }
462
463    /**
464     *  timed poll before a delayed offer fails; after offer succeeds;
465     *  on interruption throws
466     */
467    public void testTimedPollWithOffer() throws InterruptedException {
468        final LinkedBlockingQueue q = new LinkedBlockingQueue(2);
469        Thread t = new Thread(new CheckedRunnable() {
470            public void realRun() throws InterruptedException {
471                try {
472                    assertNull(q.poll(SHORT_DELAY_MS, MILLISECONDS));
473                    assertSame(zero, q.poll(LONG_DELAY_MS, MILLISECONDS));
474                    q.poll(LONG_DELAY_MS, MILLISECONDS);
475                    shouldThrow();
476                } catch (InterruptedException success) {}
477            }});
478
479        t.start();
480        Thread.sleep(SMALL_DELAY_MS);
481        assertTrue(q.offer(zero, SHORT_DELAY_MS, MILLISECONDS));
482        t.interrupt();
483        t.join();
484    }
476  
477      /**
478       * peek returns next element, or null if empty

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines