assertFalse( cursor.previous() );
assertFalse( cursor.available() );
try
{
cursor.after( new ForwardIndexEntry() );
fail( "should fail with UnsupportedOperationException " );
}
catch ( UnsupportedOperationException uoe )
{
}
try
{
cursor.before( new ForwardIndexEntry() );
fail( "should fail with UnsupportedOperationException " );
}
catch ( UnsupportedOperationException uoe )
{
}