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