Example #1
0
        public void DAL_RecognitionPropertyConstructorTest()
        {
            string a = string.Empty; // TODO: Initialize to an appropriate value
            string v = string.Empty; // TODO: Initialize to an appropriate value
            int    p = 0;            // TODO: Initialize to an appropriate value

            DAL.RecognitionProperty target = new DAL.RecognitionProperty(a, v, p);
            Assert.Inconclusive("TODO: Implement code to verify target");
        }
Example #2
0
        public void PriorityTest()
        {
            string a = string.Empty;                                               // TODO: Initialize to an appropriate value
            string v = string.Empty;                                               // TODO: Initialize to an appropriate value
            int    p = 0;                                                          // TODO: Initialize to an appropriate value

            DAL.RecognitionProperty target = new DAL.RecognitionProperty(a, v, p); // TODO: Initialize to an appropriate value
            int expected = 0;                                                      // TODO: Initialize to an appropriate value
            int actual;

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