/// <summary> /// Get FormSettings by UserName and FormName /// </summary> /// <param name="request">The GetFormSettingsRequest object.</param> /// <returns>A GetFormSettingsResponse object</returns> public GetFormSettingsResponse GetFormSettings(GetFormSettingsRequest request) { GetFormSettingsResponse response = new GetFormSettingsResponse(); response.FormSettingsCD = FormSettingsCD.GetFormSettings(request.UserName, request.FormName); return(response); }
public void GetFormSettingsTest() { string userName = string.Empty; // TODO: Initialize to an appropriate value string formName = string.Empty; // TODO: Initialize to an appropriate value FormSettingsCD expected = null; // TODO: Initialize to an appropriate value FormSettingsCD actual; actual = FormSettingsCD.GetFormSettings(userName, formName); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }