Package etch.util.core.nio

Examples of etch.util.core.nio.History.min()


  /** @throws Exception */
  @Test
  public void construct1() throws Exception
  {
    History h = new History( 1, 2, 3 );
    assertEquals( 1, h.min() );
    assertEquals( 2, h.limit() );
    assertEquals( 3, h.length() );
  }

  /** @throws Exception */
 
View Full Code Here


  /** @throws Exception */
  @Test
  public void construct2() throws Exception
  {
    History h = new History( 102, 119, 7 );
    assertEquals( 102, h.min() );
    assertEquals( 119, h.limit() );
    assertEquals( 7, h.length() );
  }
 
  /** @throws Exception */
 
View Full Code Here

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.