Example #1
0
        //
        //You can use the following additional attributes as you write your tests:
        //
        //Use ClassInitialize to run code before running the first test in the class
        //[ClassInitialize()]
        //public static void MyClassInitialize(TestContext testContext)
        //{
        //}
        //
        //Use ClassCleanup to run code after all tests in a class have run
        //[ClassCleanup()]
        //public static void MyClassCleanup()
        //{
        //}
        //
        //Use TestInitialize to run code before running each test
        //[TestInitialize()]
        //public void MyTestInitialize()
        //{
        //}
        //
        //Use TestCleanup to run code after each test has run
        //[TestCleanup()]
        //public void MyTestCleanup()
        //{
        //}
        //
        #endregion


        internal virtual IRecognitionMethod CreateIRecognitionMethod()
        {
            // TODO: Instantiate an appropriate concrete class.
            IRecognitionMethod target = null;

            return(target);
        }
Example #2
0
        public void TrainTest()
        {
            IRecognitionMethod target = CreateIRecognitionMethod(); // TODO: Initialize to an appropriate value
            bool expected             = false;                      // TODO: Initialize to an appropriate value
            bool actual;

            actual = target.Train();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Example #3
0
        public void RecognizeTest()
        {
            IRecognitionMethod target   = CreateIRecognitionMethod(); // TODO: Initialize to an appropriate value
            object             pattern  = null;                       // TODO: Initialize to an appropriate value
            object             expected = null;                       // TODO: Initialize to an appropriate value
            object             actual;

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