Working with load tests in soapUI
In Chapter 4, Working with Your First TestSuite, we created a TestSuite for the RoomManagementService interface. Similarly,
create another TestSuite for GuestManagementService and name it GuestManagementServiceTestSuite
. We are going to load test the getGuestDetails operation in the
GuestManagement service. To do this, follow these steps:
In HotelReservationProject, select the getGuestDetails TestCase under GuestManagementServiceTestSuite. You will notice the Load Tests (0) node there.
Right-click on it or press Ctrl + N to create a new load test. You will be asked to enter a name for the load test; specify
getGuestDetailsLoadTest
as the name.The detailed view of getGuestDetailsLoadTest will be opened as shown in the following screenshot. There is only one TestStep, getGuestDetails, in the load test. This is because the getGuestDetails TestCase includes a single TestStep. If your TestCase contains a number of different TestSteps such as SOAP requests, property...