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.");
        }