Package com.github.kristofa.flume

Source Code of com.github.kristofa.flume.SlidingWindowHistogramBuilderTest

package com.github.kristofa.flume;

import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNotSame;

import org.junit.Test;

import com.codahale.metrics.Histogram;

public class SlidingWindowHistogramBuilderTest {

    @Test
    public void testBuildHistogram() {
        final SlidingWindowHistogramBuilder histogramBuilder = new SlidingWindowHistogramBuilder(3000);
        final Histogram histogram1 = histogramBuilder.buildHistogram();
        assertNotNull(histogram1);
        final Histogram histogram2 = histogramBuilder.buildHistogram();
        assertNotNull(histogram2);
        assertNotSame(histogram1, histogram2);
    }

}
TOP

Related Classes of com.github.kristofa.flume.SlidingWindowHistogramBuilderTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.