コード例 #1
0
        public void GetNumberOfVowelsShouldReturnNumberOfVowels()
        {
            //arrange
            var collection = new StringCollection();

            //act
            collection.Add("hi");
            collection.Add("abcde");

            //assert
            Assert.Equal(3, collection.GetNumberOfVowle());
        }