public void GetAvgLengthShouldReturnAvgLength() { //arrange var collection = new StringCollection(); //act collection.Add("hi"); collection.Add("byef"); //assert Assert.Equal(3, collection.GetAvrageLength()); }