@Test
public void testExecuteMethodThrowsParseException() throws Throwable {
BSHTransactionParticipant bSHTransactionParticipant = new BSHTransactionParticipant();
try {
bSHTransactionParticipant.executeMethod(new BSHMethod("\u000E\u0019\u0003/\u0008Tz<|p", false), 100L,
new CharConversionException(), new LogEvent("testBSHTransactionParticipantTag", new Object()),
"testBSHTransactionParticipantResultName");
fail("Expected ParseException to be thrown");
} catch (ParseException ex) {
assertThat(ex.getMessage(), allOf(notNullValue(), containsString("line 1, column 4")));
}