Esempio n. 1
0
        public void IsDbConnectedTest()
        {
            IwsService target   = new IwsService(); // TODO: Initialize to an appropriate value
            bool       expected = false;            // TODO: Initialize to an appropriate value
            bool       actual;

            actual = target.IsDbConnected();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Esempio n. 2
0
        public void UpdatePersonStatusTest()
        {
            IwsService target   = new IwsService(); // TODO: Initialize to an appropriate value
            Guid       personID = new Guid();       // TODO: Initialize to an appropriate value
            int        expected = 0;                // TODO: Initialize to an appropriate value
            int        actual;

            actual = target.UpdatePersonStatus(personID);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Esempio n. 3
0
        public void RetreiveFbiHistoryUrlTest()
        {
            IwsService target   = new IwsService(); // TODO: Initialize to an appropriate value
            Guid       personID = new Guid();       // TODO: Initialize to an appropriate value
            string     expected = string.Empty;     // TODO: Initialize to an appropriate value
            string     actual;

            actual = target.RetreiveFbiHistoryUrl(personID);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Esempio n. 4
0
        public void ProvisionedByPersonTest()
        {
            IwsService           target   = new IwsService(); // TODO: Initialize to an appropriate value
            Guid                 personID = new Guid();       // TODO: Initialize to an appropriate value
            List <ProvisionData> expected = null;             // TODO: Initialize to an appropriate value
            List <ProvisionData> actual;

            actual = target.ProvisionedByPerson(personID);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Esempio n. 5
0
        public void EndBiometricCaptureTest()
        {
            IwsService target   = new IwsService(); // TODO: Initialize to an appropriate value
            Guid       personID = new Guid();       // TODO: Initialize to an appropriate value
            bool       expected = false;            // TODO: Initialize to an appropriate value
            bool       actual;

            actual = target.EndBiometricCapture(personID);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Esempio n. 6
0
        public void CriminalHistoryCheckSubmittedTest()
        {
            IwsService target   = new IwsService(); // TODO: Initialize to an appropriate value
            Guid       personID = new Guid();       // TODO: Initialize to an appropriate value
            bool       expected = false;            // TODO: Initialize to an appropriate value
            bool       actual;

            actual = target.CriminalHistoryCheckSubmitted(personID);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Esempio n. 7
0
        public void CardStatusTest()
        {
            IwsService target   = new IwsService(); // TODO: Initialize to an appropriate value
            Guid       personID = new Guid();       // TODO: Initialize to an appropriate value
            int        cardID   = 0;                // TODO: Initialize to an appropriate value
            int        badgeID  = 0;                // TODO: Initialize to an appropriate value
            bool       expected = false;            // TODO: Initialize to an appropriate value
            bool       actual;

            actual = target.CardStatus(personID, cardID, badgeID);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Esempio n. 8
0
        public void DeactivateBadgeTest()
        {
            IwsService target   = new IwsService(); // TODO: Initialize to an appropriate value
            Guid       personID = new Guid();       // TODO: Initialize to an appropriate value
            int        badgeID  = 0;                // TODO: Initialize to an appropriate value
            int        cardID   = 0;                // TODO: Initialize to an appropriate value
            string     reason   = string.Empty;     // TODO: Initialize to an appropriate value
            bool       expected = false;            // TODO: Initialize to an appropriate value
            bool       actual;

            actual = target.DeactivateBadge(personID, badgeID, cardID, reason);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Esempio n. 9
0
        public void IwsServiceConstructorTest()
        {
            IwsService target = new IwsService();

            Assert.Inconclusive("TODO: Implement code to verify target");
        }