catch ( Exception e )
{
fail( e.getMessage() );
}
ModifyResponse modifyResponse = ( ModifyResponse ) parser.getBatchResponse().getCurrentResponse();
Control control = modifyResponse.getCurrentControl();
assertEquals( 1, modifyResponse.getControls().size() );
assertTrue( control.getCriticality() );
assertEquals( "1.2.840.113556.1.4.643", control.getControlType() );
assertEquals( StringTools.EMPTY_BYTES, ( byte[] ) control.getControlValue() );
}