/** @throws Exception */
@Test
public void used5() throws Exception
{
History h = new History( 0, 10, 5 );
checkUsedAlloc( h, 0, 0 );
assertTrue( h.used( 1 ) );
checkUsedAlloc( h, 1, 0 );
assertTrue( h.used( 9 ) );
checkUsedAlloc( h, 10, 0 );
// try to overflow
assertFalse( h.used( 1 ) );
checkUsedAlloc( h, 10, 0 );
}