Package com.github.kristofa.flume

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

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 SlidingTimeWindowHistogramBuilderTest {

    @Test
    public void testBuildHistogram() {
        final SlidingTimeWindowHistogramBuilder histogramBuilder = new SlidingTimeWindowHistogramBuilder(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.SlidingTimeWindowHistogramBuilderTest

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.