Update appc-common to Karaf 4
[appc.git] / appc-core / appc-common-bundle / src / test / java / org / onap / appc / configuration / ConfigurationFactoryTest.java
1 package org.onap.appc.configuration;
2
3 import org.junit.Assert;
4 import org.junit.Test;
5
6 import static org.onap.appc.configuration.ConfigurationFactory.getConfiguration;
7
8 public class ConfigurationFactoryTest {
9     @Test
10     public void should_returnDefaultConfiguration(){
11         Configuration conf = null;
12
13         Assert.assertTrue(getConfiguration() instanceof DefaultConfiguration);
14     }
15 }