summaryrefslogtreecommitdiffstats
path: root/dblib/provider/src/test/java/org/onap/ccsdk/sli/core/dblib/NoAvailableConnectionsExceptionTest.java
blob: 2fdacb922eee2f6d7a5fc17a084a43352d083cef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.onap.ccsdk.sli.core.dblib;

import static org.junit.Assert.*;

import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;

public class NoAvailableConnectionsExceptionTest {

    @Test
    public void testNoAvailableConnectionsException() {
        assertNotNull(new NoAvailableConnectionsException(new Exception("test")));
    }

}