public void FTest()
        {
            IBackPropagation target   = CreateIBackPropagation(); // TODO: Initialize to an appropriate value
            double           x        = 0F;                       // TODO: Initialize to an appropriate value
            double           expected = 0F;                       // TODO: Initialize to an appropriate value
            double           actual;

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