public void testThreadLocalCommandContext_toString() throws Exception {
   CommandContext commandContext = new ThreadLocalExtendedCommandContext();
   assertNotNull(commandContext.toString());
 }
 public void testDefaultCommandExecutor_toString() throws Exception {
   CommandContext commandContext = DefaultCommandContext.instance();
   assertNotNull(commandContext.toString());
 }