コード例 #1
0
        public void TestFillABBYYDataGrid_ReturnIfEmptyString()
        {
            ABBYYDataModel testModel = new ABBYYDataModel();

            testModel.ControlNumber = "";
            testModel.FillABBYYDataGrid();
        }
コード例 #2
0
        public void TestFillABBYYDataGrid_ReturnIfNull()
        {
            ABBYYDataModel testModel = new ABBYYDataModel();

            testModel.ControlNumber = null;
            testModel.FillABBYYDataGrid();
        }
コード例 #3
0
 /// <summary>
 /// Instantiate the Model for the ViewModel's usage
 /// </summary>
 public ABBYYDataViewModel()
 {
     AppData = new ABBYYDataModel();
 }