public WordDictionaryService(IFileWrapper fileWrapper, IDictionaryPreprocessService dictionaryPreprocessService)
 {
     _fileWrapper = fileWrapper;
     _dictionaryPreprocessService = dictionaryPreprocessService;
 }
 public WordDictionaryTests()
 {
     _dictionaryPreprocessService = Substitute.For <IDictionaryPreprocessService>();
     _fileWrapper = Substitute.For <IFileWrapper>();
     _sut         = new WordDictionaryService(_fileWrapper, _dictionaryPreprocessService);
 }
Ejemplo n.º 3
0
 public DictionaryPreprocessServiceTests()
 {
     _sut = new DictionaryPreprocessService();
 }