/**
  * Test calls the method.
  *
  * <p>Has <b> OK </b> status if the method successfully returns and no exceptions were thrown.
  *
  * <p>The following method tests are to be completed successfully before :
  *
  * <ul>
  *   <li><code> addApproveActionListener() </code> : adds listener to an object
  * </ul>
  */
 public void _removeApproveActionListener() {
   requiredMethod("addApproveActionListener()");
   listener.init();
   listener.approve = true;
   oObj.removeApproveActionListener(listener);
   tRes.tested("removeApproveActionListener()", true);
 }
 /**
  * Test calls the method.
  *
  * <p>Has <b> OK </b> status if the method successfully returns and no exceptions were thrown.
  */
 public void _addApproveActionListener() {
   oObj.addApproveActionListener(listener);
   tRes.tested("addApproveActionListener()", true);
 }