コード例 #1
0
        public void AddNumbersTest()
        {
            Form1_Accessor target   = new Form1_Accessor(); // TODO: Initialize to an appropriate value
            double         iOne     = 2;                    // TODO: Initialize to an appropriate value
            double         iTwo     = 3;                    // TODO: Initialize to an appropriate value
            double         expected = 5F;                   // TODO: Initialize to an appropriate value
            double         actual;

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