Divide the MSB source codes into two repos
[msb/apigateway.git] / apiroute / apiroute-service / src / test / java / org / onap / msb / apiroute / wrapper / consulextend / cache / ServicesCatalogCacheTest.java
1 package org.onap.msb.apiroute.wrapper.consulextend.cache;
2
3 import org.junit.Test;
4 import org.onap.msb.apiroute.wrapper.consulextend.Consul;
5 import org.onap.msb.apiroute.wrapper.consulextend.cache.ServicesCatalogCache;
6
7 public class ServicesCatalogCacheTest {
8
9         @Test
10         public void testnewCache()
11         {
12                 Consul consul = Consul.newClient();
13                 ServicesCatalogCache cache = ServicesCatalogCache.newCache(consul.catalogClient());
14         }       
15 }