summaryrefslogtreecommitdiffstats
path: root/so-cnf-adapter-application/src/test/java/org/onap/so/adapters/cnf/AaiConfigurationTest.java
blob: 93ab25712fbfc5532d9e17aebd699061a0c40c6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.onap.so.adapters.cnf;

import org.junit.Test;

import static org.junit.Assert.*;

public class AaiConfigurationTest {

    private AaiConfiguration tested = new AaiConfiguration();

    @Test
    public void shouldReturnDefaultFalse() {
        boolean actual = tested.isEnabled();
        assertFalse(actual);
    }
}