Esempio n. 1
0
        private DataSetValidator GetDataSetValidator(Case testCase)
        {
            TempObjectValidator parent = new TempObjectValidator();

            parent.Initialize(testCase);
            return(parent.dataSetValidator);
        }
        private DictionaryValidator GetDictionaryValidator(Case testCase)
        {
            TempObjectValidator parent = new TempObjectValidator();

            parent.Initialize(testCase);
            return(parent.dictionaryValidator);
        }
Esempio n. 3
0
        private PocoValidator GetPocoValidator(Case testCase)
        {
            TempObjectValidator parent = new TempObjectValidator();

            parent.Initialize(testCase);
            return(parent.pocoValidator);
        }
Esempio n. 4
0
 public override void Initialize(Case testCase)
 {
     base.Initialize(testCase);
     tempObjectFactory.dataSetFactory.ForSearchKey = true;
     tempObjectValidator = new TempObjectValidator();
     tempObjectValidator.Initialize(testCase);
     tempObjectValidator.SectionType = Section.SectionType.DataAsExpected;
 }
 private DataTableValidator GetDataTableValidator(Case testCase)
 {
     TempObjectValidator parent = new TempObjectValidator();
     parent.Initialize(testCase);
     return parent.dataTableValidator;
 }
Esempio n. 6
0
 private PocoValidator GetPocoValidator(Case testCase)
 {
     TempObjectValidator parent = new TempObjectValidator();
     parent.Initialize(testCase);
     return parent.pocoValidator;
 }
 private DictionaryValidator GetDictionaryValidator(Case testCase)
 {
     TempObjectValidator parent = new TempObjectValidator();
     parent.Initialize(testCase);
     return parent.dictionaryValidator;
 }