Beispiel #1
0
 @Test
 public void ListAllPatients() {
   com.jayway.restassured.RestAssured.expect()
       .log()
       .all()
       .when()
       .get("http://opmfrontend21.cloudfoundry.com/patient/index/");
 }
Beispiel #2
0
 @Test
 public void ListAllDoctors() {
   com.jayway.restassured.RestAssured.expect()
       .when()
       .get("http://opmfrontend21.cloudfoundry.com/doctor/index/");
 }
Beispiel #3
0
 @Test
 public void ListAllNotifications() {
   com.jayway.restassured.RestAssured.expect()
       .when()
       .get("http://opmfrontend21.cloudfoundry.com/notification/index/");
 }
Beispiel #4
0
 @Test
 public void ListAllHospitalsTestCase() {
   com.jayway.restassured.RestAssured.expect()
       .when()
       .get("http://opmfrontend21.cloudfoundry.com/hospital/index/");
 }