public void BackPropagateTest()
        {
            BackPropagationOneLayer target = new BackPropagationOneLayer(); // TODO: Initialize to an appropriate value

            target.BackPropagate();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void InitializeNetworkTest()
        {
            BackPropagationOneLayer target      = new BackPropagationOneLayer(); // TODO: Initialize to an appropriate value
            List <FaceImage>        trainingSet = null;                          // TODO: Initialize to an appropriate value

            target.InitializeNetwork(trainingSet);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void BackPropagationOneLayerConstructorTest()
        {
            int inputNum  = 0; // TODO: Initialize to an appropriate value
            int outputNum = 0; // TODO: Initialize to an appropriate value
            BackPropagationOneLayer target = new BackPropagationOneLayer(inputNum, outputNum);

            Assert.Inconclusive("TODO: Implement code to verify target");
        }
        public void ForwardPropagateTest()
        {
            BackPropagationOneLayer target = new BackPropagationOneLayer(); // TODO: Initialize to an appropriate value

            double[] pattern = null;                                        // TODO: Initialize to an appropriate value
            string   output  = string.Empty;                                // TODO: Initialize to an appropriate value

            target.ForwardPropagate(pattern, output);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void GetErrorTest()
        {
            BackPropagationOneLayer target = new BackPropagationOneLayer(); // TODO: Initialize to an appropriate value
            double expected = 0F;                                           // TODO: Initialize to an appropriate value
            double actual;

            actual = target.GetError();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void RecognizeTest()
        {
            BackPropagationOneLayer target = new BackPropagationOneLayer(); // TODO: Initialize to an appropriate value

            double[] Input                    = null;                       // TODO: Initialize to an appropriate value
            string   MatchedHigh              = string.Empty;               // TODO: Initialize to an appropriate value
            string   MatchedHighExpected      = string.Empty;               // TODO: Initialize to an appropriate value
            double   OutputValueHight         = 0F;                         // TODO: Initialize to an appropriate value
            double   OutputValueHightExpected = 0F;                         // TODO: Initialize to an appropriate value
            string   MatchedLow               = string.Empty;               // TODO: Initialize to an appropriate value
            string   MatchedLowExpected       = string.Empty;               // TODO: Initialize to an appropriate value
            double   OutputValueLow           = 0F;                         // TODO: Initialize to an appropriate value
            double   OutputValueLowExpected   = 0F;                         // TODO: Initialize to an appropriate value

            target.Recognize(Input, ref MatchedHigh, ref OutputValueHight, ref MatchedLow, ref OutputValueLow);
            Assert.AreEqual(MatchedHighExpected, MatchedHigh);
            Assert.AreEqual(OutputValueHightExpected, OutputValueHight);
            Assert.AreEqual(MatchedLowExpected, MatchedLow);
            Assert.AreEqual(OutputValueLowExpected, OutputValueLow);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void BackPropagationOneLayerConstructorTest1()
        {
            BackPropagationOneLayer target = new BackPropagationOneLayer();

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