@Test
 public void testWrongActionExecutor() throws Exception {
   try {
     runWithScenario(new EasyTravelCustomer("http://localhost", "http://localhost", "false"));
     fail("Should catch exception here");
   } catch (UnsupportedOperationException e) {
     TestHelpers.assertContains(e, "MobileDevice", "not supported");
   }
 }