Examples of coordinatorDeleteCourse()


Examples of teammates.TeammatesServlet.coordinatorDeleteCourse()

   
    TeammatesServlet ts = new TeammatesServlet();
    String response;
   
    //normal delete
    response = ts.coordinatorDeleteCourse(COURSE_ID);
    assertEquals(RESPONSE_DELETED, response);
   
    //course not exists
    response = ts.coordinatorDeleteCourse("unknown courseID");
    assertEquals(RESPONSE_NOT_DELETED, response);
View Full Code Here

Examples of teammates.TeammatesServlet.coordinatorDeleteCourse()

    //normal delete
    response = ts.coordinatorDeleteCourse(COURSE_ID);
    assertEquals(RESPONSE_DELETED, response);
   
    //course not exists
    response = ts.coordinatorDeleteCourse("unknown courseID");
    assertEquals(RESPONSE_NOT_DELETED, response);
   
  }
 
  /*---------------------------------------------------EXCEPTION TESTING---------------------------------------------------*/
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.