aboutsummaryrefslogtreecommitdiffstats
path: root/appc-common/src/test/java/org/onap/appc/configuration/ConfigurationFactoryTest.java
blob: 7d0206467cd78df17ad80786d2a32db9e16865a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.onap.appc.configuration;

import org.junit.Assert;
import org.junit.Test;

import static org.onap.appc.configuration.ConfigurationFactory.getConfiguration;

public class ConfigurationFactoryTest {
    @Test
    public void should_returnDefaultConfiguration(){
        Configuration conf = null;

        Assert.assertTrue(getConfiguration() instanceof DefaultConfiguration);
    }
}