}
@Test
public void test_createStandardDeviationAggregator()
{
SamplingAggregator aggregator = AggregatorFactory.createStandardDeviationAggregator(3, TimeUnit.DAYS);
assertThat(aggregator.getName(), equalTo("dev"));
assertThat(aggregator.getValue(), equalTo(3));
assertThat(aggregator.getUnit(), equalTo(TimeUnit.DAYS));
}