Package com.google.common.collect.testing

Examples of com.google.common.collect.testing.TestStringQueueGenerator


  public static Test suite(){
    TestSuite suite = new TestSuite();
   
    suite.addTestSuite(ForwardingQueueTest.class);
    suite.addTest(
        QueueTestSuiteBuilder.using(new TestStringQueueGenerator() {

          @Override protected Queue<String> create(String[] elements) {
            return new StandardImplForwardingQueue<String>(
                Lists.newLinkedList(asList(elements)));
          }
View Full Code Here

TOP

Related Classes of com.google.common.collect.testing.TestStringQueueGenerator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.