public void CountAllValuesShouldReturnCorrectNumber()
        {
            const string Value = "test value";
            const string OtherValue = "other value";

            var dict = new MultivalueDictionary<int, string>();
            dict.Add( 1, Value );
            dict.Add( 1, OtherValue );
            dict.Add( 2, OtherValue );

            Assert.Equal( dict.CountAllValues(), 3 );
        }