public void SetTrainImagesTest()
        {
            SelectionTrainTestImagesViewModel target = new SelectionTrainTestImagesViewModel(); // TODO: Initialize to an appropriate value
            List <FaceImage> trainImages             = null;                                    // TODO: Initialize to an appropriate value

            target.SetTrainImages(trainImages);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public SelectionTrainTestImagesControl()
        {
            _selectedTrainItems = new List <FaceImage>();
            _selectedTestItems  = new List <FaceImage>();
            _selectedFaceImages = new List <FaceImage>();
            _selectionTrainTestImagesViewModel = new SelectionTrainTestImagesViewModel();

            DataContext = _selectionTrainTestImagesViewModel;

            InitializeComponent();
        }
        public void NumberTrainFaceImagesTest()
        {
            SelectionTrainTestImagesViewModel target = new SelectionTrainTestImagesViewModel(); // TODO: Initialize to an appropriate value
            int expected = 0;                                                                   // TODO: Initialize to an appropriate value
            int actual;

            target.NumberTrainFaceImages = expected;
            actual = target.NumberTrainFaceImages;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void SelectionTrainTestImagesViewModelConstructorTest()
        {
            SelectionTrainTestImagesViewModel target = new SelectionTrainTestImagesViewModel();

            Assert.Inconclusive("TODO: Implement code to verify target");
        }