Пример #1
0
 private void RefreshResult()
 {
     _sentenceParserHelper.UpdateWordsCountList(ref _wordsCountBindedList, _sentenceParserHelper.GetWordsCountDictionary(_sentence));
     OnPropertyChanged("WordsCountList");
 }
Пример #2
0
 public void GetWordsCountDictionaryNullTest()
 {
     _wordsCountDictionary = _sentenceParserHelper.GetWordsCountDictionary(null);
     Assert.AreEqual(0, _wordsCountDictionary.Count);
 }