コード例 #1
0
        public void AverageCodingMessageLengthTest()
        {
            string text     = "often this information is the individual identification";
            var    analyzer = new TextAnalyzer(text);

            double averageLength = analyzer.AverageCodingMessageLength();

            Assert.AreEqual(3.73, Math.Round(averageLength, 2));
        }