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