aboutsummaryrefslogtreecommitdiffstats
path: root/vnfapi/provider/src/test/java/org/onap/sdnc/vnfapi/VnfSdnUtilTest.java
blob: dbfca07452bf0acc1f09d44bc20953b152985c24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.onap.sdnc.vnfapi;

import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.powermock.reflect.Whitebox;

public class VnfSdnUtilTest {

    private VnfSdnUtil vnfSdnUtil;

    @Before public void setUp() throws Exception {
        vnfSdnUtil = new VnfSdnUtil();
    }

    @Test public void loadProperties() throws Exception {
        vnfSdnUtil.loadProperties();
        Object properties = Whitebox.getInternalState(VnfSdnUtil.class, "properties");
        Assert.assertNotNull(properties);
    }
}