aboutsummaryrefslogtreecommitdiffstats
path: root/apiroute/apiroute-service/src/test/java/org/onap/msb/apiroute/wrapper/consulextend/cache/ServicesCatalogCacheTest.java
blob: 7518ad7a0e0034af6fa9efdd4238b65f62abb449 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.onap.msb.apiroute.wrapper.consulextend.cache;

import org.junit.Test;
import org.onap.msb.apiroute.wrapper.consulextend.Consul;
import org.onap.msb.apiroute.wrapper.consulextend.cache.ServicesCatalogCache;

public class ServicesCatalogCacheTest {

	@Test
	public void testnewCache()
	{
		Consul consul = Consul.newClient();
		ServicesCatalogCache cache = ServicesCatalogCache.newCache(consul.catalogClient());
	}	
}