Exemplo n.º 1
0
        public void GetExpiredLicneseByIdCard()
        {
            LicenseService target = new LicenseService();                               // TODO: Initialize to an appropriate value
            string         idCard = "3100902079682";                                    // TODO: Initialize to an appropriate value

            DTO.ResponseService <List <DTO.PersonLicenseTransaction> > expected = null; // TODO: Initialize to an appropriate value
            DTO.ResponseService <List <DTO.PersonLicenseTransaction> > actual;
            actual = target.GetExpiredLicneseByIdCard(idCard);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }