@Given("the user is receptionist or doctor")
 public void givenTheUserIsReceptionistOrDoctor() {
   assert (endUser.is_receptionist() || endUser.is_doctor());
 }
 @Given("the user is receptionist")
 public void givenTheUserIsReceptionist() {
   assert (endUser.is_receptionist());
 }