use of io.dropwizard.metrics.UniformSnapshot in project light-4j by networknt.
the class UniformSnapshotTest method calculatesAMaxOfZeroForAnEmptySnapshot.
@Test
public void calculatesAMaxOfZeroForAnEmptySnapshot() throws Exception {
final Snapshot emptySnapshot = new UniformSnapshot(new long[] {});
assertThat(emptySnapshot.getMax()).isZero();
}
Aggregations