dbfca07452bf0acc1f09d44bc20953b152985c24
[sdnc/northbound.git] / vnfapi / provider / src / test / java / org / onap / sdnc / vnfapi / VnfSdnUtilTest.java
1 package org.onap.sdnc.vnfapi;
2
3 import org.junit.Assert;
4 import org.junit.Before;
5 import org.junit.Test;
6 import org.powermock.reflect.Whitebox;
7
8 public class VnfSdnUtilTest {
9
10     private VnfSdnUtil vnfSdnUtil;
11
12     @Before public void setUp() throws Exception {
13         vnfSdnUtil = new VnfSdnUtil();
14     }
15
16     @Test public void loadProperties() throws Exception {
17         vnfSdnUtil.loadProperties();
18         Object properties = Whitebox.getInternalState(VnfSdnUtil.class, "properties");
19         Assert.assertNotNull(properties);
20     }
21 }