aboutsummaryrefslogtreecommitdiffstats
path: root/common-app-api/src/test/java/org/openecomp/sdc/common/kpi/api/ASDCKpiApiTest.java
blob: 3ff24f2b07457148be5cb44645ecf6625f070ca6 (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
package org.openecomp.sdc.common.kpi.api;

import org.junit.Test;


public class ASDCKpiApiTest {

	private ASDCKpiApi createTestSubject() {
		return new ASDCKpiApi();
	}

	
	@Test
	public void testCountImportResourcesKPI() throws Exception {

		// default test
		ASDCKpiApi.countImportResourcesKPI();
	}

	
	@Test
	public void testCountCreatedResourcesKPI() throws Exception {

		// default test
		ASDCKpiApi.countCreatedResourcesKPI();
	}

	
	@Test
	public void testCountCreatedServicesKPI() throws Exception {

		// default test
		ASDCKpiApi.countCreatedServicesKPI();
	}

	
	@Test
	public void testCountUsersAuthorizations() throws Exception {

		// default test
		ASDCKpiApi.countUsersAuthorizations();
	}

	
	@Test
	public void testCountActivatedDistribution() throws Exception {

		// default test
		ASDCKpiApi.countActivatedDistribution();
	}
}