/** @throws Exception */
@Test
public void used3() throws Exception
{
History h = new History( 0, 10, 5 );
checkUsedAlloc( h, 0, 0 );
assertTrue( h.used( 1 ) );
checkUsedAlloc( h, 1, 0 );
assertTrue( h.used( 1 ) );
checkUsedAlloc( h, 2, 0 );
assertTrue( h.used( -1 ) );
checkUsedAlloc( h, 1, 0 );
assertTrue( h.used( -1 ) );
checkUsedAlloc( h, 0, 0 );
}