* @throws IOException
* @throws ServletException
*/
@Test
public void testCourseIDCaseSensitivity() throws IOException, ServletException {
TeammatesServlet ts = new TeammatesServlet();
String response;
String COURSE_ID_LOWER = "cs1101";
String COURSE_ID_UPPER = "CS1101";
response = ts.coordinatorAddCourse(COURSE_ID_LOWER, COURSE_NAME, GOOGLE_ID);
assertEquals(RESPONSE_ADDED, response);
response = ts.coordinatorAddCourse(COURSE_ID_LOWER, "sensitive course", GOOGLE_ID);
assertEquals(RESPONSE_EXISTS, response);
//TODO: change to insensitive
response = ts.coordinatorAddCourse(COURSE_ID_UPPER, COURSE_NAME, GOOGLE_ID);
// assertEquals(RESPONSE_EXISTS, response);
//TODO: change to insensitive
response = ts.coordinatorAddCourse(COURSE_ID_UPPER, "sensitive course", GOOGLE_ID);
// assertEquals(RESPONSE_EXISTS, response);
}