Exemple #1
0
        public void ComparedListBuilderConstructorTest()
        {
            double              possibleError             = 0F;   // TODO: Initialize to an appropriate value
            double              lowerBoundPossibleError   = 0F;   // TODO: Initialize to an appropriate value
            List <Element>      actualElementList         = null; // TODO: Initialize to an appropriate value
            List <Element>      actualElementListExpected = null; // TODO: Initialize to an appropriate value
            List <Element>      theoryElementList         = null; // TODO: Initialize to an appropriate value
            List <Element>      theoryElementListExpected = null; // TODO: Initialize to an appropriate value
            ComparedListBuilder target = new ComparedListBuilder(possibleError, lowerBoundPossibleError, actualElementList, 0, ref theoryElementList);

            Assert.AreEqual(actualElementListExpected, actualElementList);
            Assert.AreEqual(theoryElementListExpected, theoryElementList);
            Assert.Inconclusive("TODO: Implement code to verify target");
        }
Exemple #2
0
        public void BuildListTest()
        {
            double              possibleError             = 0F;                                                                                   // TODO: Initialize to an appropriate value
            double              lowerPossibleError        = 0F;                                                                                   // TODO: Initialize to an appropriate value
            List <Element>      actualElementList         = null;                                                                                 // TODO: Initialize to an appropriate value
            List <Element>      actualElementListExpected = null;                                                                                 // TODO: Initialize to an appropriate value
            List <Element>      theoryElementList         = null;                                                                                 // TODO: Initialize to an appropriate value
            List <Element>      theoryElementListExpected = null;                                                                                 // TODO: Initialize to an appropriate value
            ComparedListBuilder target = new ComparedListBuilder(possibleError, lowerPossibleError, actualElementList, 0, ref theoryElementList); // TODO: Initialize to an appropriate value

            target.BuildList();
            Assert.AreEqual(actualElementListExpected, actualElementList);
            Assert.AreEqual(theoryElementListExpected, theoryElementList);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }