Assumes that this command fails. @param cmd command reference @param session Session
(final Command cmd, final Session session)
| 111 | * @param session Session |
| 112 | */ |
| 113 | private static void no(final Command cmd, final Session session) { |
| 114 | try { |
| 115 | session.execute(cmd); |
| 116 | fail("Command was supposed to fail."); |
| 117 | } catch(final IOException ex) { |
| 118 | Util.debug(ex); |
| 119 | } |
| 120 | } |
| 121 | } |
no test coverage detected