private void SentenceWithSeparatorsOnlyTest(IWordsCounter wordsCounter)
        {
            const string SampleString = ".;  \t , ()\\~/;";

            wordsCounter.Count(SampleString);

            wordsCounter.CheckIfResultIsEmpty();
        }