@Test(expected = IndexOutOfBoundsException.class)
public void connection_post_processors_02() throws SQLException {
JenaConnection conn = this.getConnection();
Assert.assertFalse(conn.getPostProcessors().hasNext());
ResultsEcho echo = new ResultsEcho();
// Inserting at zero index should be safe
conn.insertPostProcessor(0, echo);
Assert.assertTrue(conn.getPostProcessors().hasNext());