(Object option)
| 336 | // TestMain helpers |
| 337 | |
| 338 | public static boolean getCliArgValue(Object option) { |
| 339 | String optionStr = (String) option; |
| 340 | String[] args = Main.args; |
| 341 | for (String arg : args) { |
| 342 | if (arg.equals(optionStr)) { |
| 343 | return true; |
| 344 | } |
| 345 | } |
| 346 | return false; |
| 347 | } |
| 348 | |
| 349 | public static void dump(Object... messObjects) { |
| 350 | StringBuilder sb = new StringBuilder(); |
no test coverage detected