Exemplo n.º 1
0
 public void DataDictionaryTableDataProvider_ctor_ArgumentNullExceptionWithNoIDataDictionaryObjectCreator()
 {
     // Arrange / Act / Assert
     _biz = new DataDictionaryTableDataProvider(
         _mockIGetDbTableColumnInfo.Object,
         _mockIDataDictionaryExclusionRules.Object,
         null
         );
 }
Exemplo n.º 2
0
        public void Setup()
        {
            _mockIGetDbTableColumnInfo         = new Mock <IGetDbTableColumnInfo>();
            _mockIDataDictionaryExclusionRules = new Mock <ITableExclusionRules>();
            _mockIDataDictionaryObjectCreator  = new Mock <ITableModelObjectCreator>();

            _biz = new DataDictionaryTableDataProvider(
                _mockIGetDbTableColumnInfo.Object,
                _mockIDataDictionaryExclusionRules.Object,
                _mockIDataDictionaryObjectCreator.Object
                );
        }