Example #1
0
 public void WhenIRemoveTheEndpointURLUnderPatientDataEventingTab_()
 {
     if (!BP_Study_EditPreferences_PatientDataEventingUtilities.RemoveEndPointURL())
     {
         ScenarioContext.Current["ActResult"] = "Failed";
     }
 }
Example #2
0
 public void WhenIUpdateTheEndpointURLUnderPatientDataEventingTab_()
 {
     if (!BP_Study_EditPreferences_PatientDataEventingUtilities.SetEndPointURL(ConfigurationHelper.ODMEndpointURL))
     {
         ScenarioContext.Current["ActResult"] = "Failed";
     }
 }
Example #3
0
 public void WhenIEnterTheValueForTheEndpointURLField(string EndpointURL = null)
 {
     if (EndpointURL == null)
     {
         EndpointURL = ConfigurationHelper.ODMEndpointURL;
     }
     if (!BP_Study_EditPreferences_PatientDataEventingUtilities.SetEndPointURL(EndpointURL))
     {
         ScenarioContext.Current["ActResult"] = "Failed";
     }
 }