@Test(expected = UnsupportedOperationException.class)
 public void testNewTransactionContext2() {
   connection.newTransactionContext(null);
 }
 @Test(expected = UnsupportedOperationException.class)
 public void testShutdown() {
   connection.shutdown();
 }
 @Test(expected = UnsupportedOperationException.class)
 public void testExecuteTransactionTwoArgs() {
   connection.executeTransaction(null, null);
 }
 @Test(expected = UnsupportedOperationException.class)
 public void testGetLifecycleService() {
   connection.getLifecycleService();
 }