Format ONAP-XACML and add JUnit
[policy/engine.git] / ONAP-XACML / src / test / java / org / onap / policy / xacml / test / util / MetricsUtilTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-XACML
4  * ================================================================================
5  * Copyright (C) 2017, 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (C) 2019 Samsung
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.xacml.test.util;
24
25 import static org.junit.Assert.*;
26
27 import org.junit.Test;
28 import org.onap.policy.xacml.util.MetricsUtil;
29
30 public class MetricsUtilTest {
31
32     @Test
33     public void metricsUtilTest() {
34         MetricsUtil.AvgLatency avgLatency = new MetricsUtil.AvgLatency();
35         avgLatency.compute(0);
36         assertTrue(avgLatency.avg() == 0);
37         avgLatency.compute(2);
38         assertTrue(avgLatency.avg() == 1);
39         avgLatency.reset();
40         assertTrue(avgLatency.avg() == 0);
41
42         MetricsUtil.MaxLatency maxLatency = new MetricsUtil.MaxLatency();
43         maxLatency.compute(2);
44         assertTrue(maxLatency.max() == 2);
45         maxLatency.reset();
46         assertTrue(maxLatency.max() < 0);
47
48         MetricsUtil.MinLatency minLatency = new MetricsUtil.MinLatency();
49         minLatency.compute(2);
50         assertTrue(minLatency.min() == 2);
51         minLatency.reset();
52         assertTrue(minLatency.min() > 0);
53     }
54
55 }