Beispiel #1
0
 public void WhenISendCreateRequestContainingObjectWithEmptyFields()
 {
     response = sender.CreateNewEmployee(employee);
 }
Beispiel #2
0
 public void WhenISendARequestWithIdToTheAPI()
 {
     response = sender.GetOneEmployee(employeeId);
 }
Beispiel #3
0
 public void WhenISendCreateRequestToTheAPI()
 {
     response = sender.CreateNewEmployee(employee);
 }
Beispiel #4
0
 public void WhenISendDeleteRequestWithIdWhichIsNotFoundToTheAPI()
 {
     response = sender.DeleteEmployee(employeeId.ToString());
 }
Beispiel #5
0
 public void WhenISendUpdateRequestToTheAPI()
 {
     response = sender.UpdateEmployee(updatedEmployee);
 }