Package de.tuhrig.thofu.gui

Examples of de.tuhrig.thofu.gui.History


public class HistoryTest {

  @Test
  public void storageLimit() {
   
    History history = History.instance;
   
    for(int i = 0; i < History.limit * 2; i++) {
     
      history.add(null, new Date(), new Date());

      Assert.assertTrue(history.size() < History.limit);
    }
  }
View Full Code Here

TOP

Related Classes of de.tuhrig.thofu.gui.History

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.