public WordListBuilder(
     IWordListPathConfigurationProvider wordListPathConfigurationProvider,
     IWordFileReader wordFileReader)
 {
     this.wordListPathConfigurationProvider = wordListPathConfigurationProvider;
     this.wordFileReader = wordFileReader;
 }
Example #2
0
 public WordListBuilderTest()
 {
     this.wordListPathConfigurationProvider = A.Fake <IWordListPathConfigurationProvider>();
     this.wordFileReader = A.Fake <IWordFileReader>();
     this.builder        = new WordListBuilder(this.wordListPathConfigurationProvider, this.wordFileReader);
 }