public void Can_add_IntHistogram_with_values_in_range()
        {
            var intHistogram = new IntHistogram(short.MaxValue-1, 3);
            intHistogram.RecordValueWithCount(1, 100);
            intHistogram.RecordValueWithCount(short.MaxValue-1, 1000);

            var shortHistogram = new ShortHistogram(short.MaxValue-1, 3);
            shortHistogram.Add(intHistogram);

            HistogramAssert.AreValueEqual(intHistogram, shortHistogram);
        }