Exemplo n.º 1
0
 private void RefreshResult()
 {
     _sentenceParserHelper.UpdateWordsCountList(ref _wordsCountBindedList, _sentenceParserHelper.GetWordsCountDictionary(_sentence));
     OnPropertyChanged("WordsCountList");
 }
Exemplo n.º 2
0
 public void GetWordsCountDictionaryNullTest()
 {
     _wordsCountDictionary = _sentenceParserHelper.GetWordsCountDictionary(null);
     Assert.AreEqual(0, _wordsCountDictionary.Count);
 }