Package org.rssowl.core.internal.persist

Examples of org.rssowl.core.internal.persist.LongArrayList


  /**
   * Tests that passing a negative to get throws appropriate exception.
   */
  @Test(expected = IndexOutOfBoundsException.class)
  public void testGetNegative() {
    LongArrayList list = new LongArrayList(10);
    list.add(0);
    list.add(1);
    list.add(2);
    list.get(-1);
  }
View Full Code Here

TOP

Related Classes of org.rssowl.core.internal.persist.LongArrayList

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.