Package de.tuhrig.thofu.gui

Source Code of de.tuhrig.thofu.gui.HistoryTest

package de.tuhrig.thofu.gui;

import java.util.Date;

import org.junit.Assert;
import org.junit.Test;

import 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);
    }
  }
}
TOP

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

TOP
Copyright © 2018 www.massapi.com. 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.