public void TrainTest()
        {
            RecognizeMethodsViewModelBase target = CreateRecognizeMethodsViewModelBase(); // TODO: Initialize to an appropriate value

            target.Train();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        internal virtual RecognizeMethodsViewModelBase CreateRecognizeMethodsViewModelBase()
        {
            // TODO: Instantiate an appropriate concrete class.
            RecognizeMethodsViewModelBase target = null;

            return(target);
        }
        public void TrainTimeValueTest()
        {
            RecognizeMethodsViewModelBase target = CreateRecognizeMethodsViewModelBase(); // TODO: Initialize to an appropriate value
            double expected = 0F;                                                         // TODO: Initialize to an appropriate value
            double actual;

            target.TrainTimeValue = expected;
            actual = target.TrainTimeValue;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void TrainStatusTest()
        {
            RecognizeMethodsViewModelBase target = CreateRecognizeMethodsViewModelBase(); // TODO: Initialize to an appropriate value
            string expected = string.Empty;                                               // TODO: Initialize to an appropriate value
            string actual;

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