aboutsummaryrefslogtreecommitdiffstats
path: root/dcae-analytics-aai/src/test/java/org/onap/dcae/apod/analytics/aai/AAIClientFactoryTest.java
blob: b99eb9c48c94a0a70ed419841f7753cf5b5cbabf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.onap.dcae.apod.analytics.aai;

import static org.junit.Assert.assertNotNull;

import org.junit.Test;


public class AAIClientFactoryTest {

	

	@Test
	public void testCreate_shouldReturn_NotNull() {
		AAIClientFactory result = AAIClientFactory.create();
		assertNotNull(result);

	}

}