Package org.jazzteam.CircularList

Examples of org.jazzteam.CircularList.CircularList


public class CircularListTest {
  private CircularList circularList;

  @Before
  public void initialize() {
    circularList = new CircularList();
  }
View Full Code Here


    circularList = new CircularList();
  }

  @Test
  public void test() {
    circularList = new CircularList();
    assertEquals(circularList.getSize(),0);
    circularList.addItem(10);
    circularList.addItem(5);
    assertEquals(circularList.getValue(2),5);
    circularList.addItem(56);
View Full Code Here

TOP

Related Classes of org.jazzteam.CircularList.CircularList

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.