Example #1
0
        public void GetAllLicenseByIDCardTest()
        {
            LicenseService target = new LicenseService();                       // TODO: Initialize to an appropriate value
            string         idCard = "1589900053854";                            // TODO: Initialize to an appropriate value
            ResponseService <List <PersonLicenseTransaction> > expected = null; // TODO: Initialize to an appropriate value
            ResponseService <List <PersonLicenseTransaction> > actual;

            actual = target.GetAllLicenseByIDCard(idCard, "1", 1);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Example #2
0
        public void GetAllLicenseByIDCardTest1()
        {
            LicenseService target  = new LicenseService();                      // TODO: Initialize to an appropriate value
            string         idCard  = "3361857228377";                           // TODO: Initialize to an appropriate value
            string         mode    = "1";                                       // TODO: Initialize to an appropriate value
            int            feemode = 1;                                         // TODO: Initialize to an appropriate value
            ResponseService <List <PersonLicenseTransaction> > expected = null; // TODO: Initialize to an appropriate value
            ResponseService <List <PersonLicenseTransaction> > actual;

            actual = target.GetAllLicenseByIDCard(idCard, mode, feemode);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }