public void GetExamHistoryByIDWithConditionTest() { LicenseService target = new LicenseService(); // TODO: Initialize to an appropriate value string idCard = "3100900224766"; // TODO: Initialize to an appropriate value string licenseTypeCode = "04"; // TODO: Initialize to an appropriate value ResponseService <List <ExamHistory> > expected = new ResponseService <List <ExamHistory> >(); // TODO: Initialize to an appropriate value ResponseService <List <ExamHistory> > actual; actual = target.GetExamHistoryByIDWithCondition(idCard, licenseTypeCode); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }