summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/aai/sparky/analytics/HistoricalCounterTest.java
blob: 9816fff05b92d3d5b4dc51181438d38c72b2d84c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package org.onap.aai.sparky.analytics;

import org.junit.Assert;
import org.junit.Test;

public class HistoricalCounterTest {

	
	@Test
	public void testAllMethods() {
		HistoricalCounter hc = new HistoricalCounter(true);
		
		boolean maintainSingleValue = hc.isSingleValue();
		Assert.assertTrue(maintainSingleValue);
		
		hc.update(1.0);
		double value = hc.getValue();
		Assert.assertEquals(1.0, value, 0.1);
		
		double min = hc.getMin();
		Assert.assertEquals(-1, min, 0.1);
		
		double max = hc.getMax();
		Assert.assertEquals(0, max, 0.1);
		
		long numOfSamples = hc.getNumSamples();
		Assert.assertEquals(0, numOfSamples, 0.1);
		
		double avg = hc.getAvg();
		Assert.assertEquals(0, avg, 0.1);
		
		String stringValue = hc.toString();
		Assert.assertNotNull(stringValue);
		
		hc.reset();
		
		double valueReset = hc.getValue();
		Assert.assertEquals(0.0, valueReset, 0.1);
		
		double minReset = hc.getMin();
		Assert.assertEquals(-1, minReset, 0.1);
		
		double maxReset = hc.getMax();
		Assert.assertEquals(0, maxReset, 0.1);
		
		long numOfSamplesReset = hc.getNumSamples();
		Assert.assertEquals(0, numOfSamplesReset, 0.1);
		
		double avgReset = hc.getAvg();
		Assert.assertEquals(0, avgReset, 0.1);
	}
}