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

import static org.junit.Assert.assertNotNull;

import org.junit.Test;

public class DBConfigExceptionTest {

    @Test
    public void testDBConfigExceptionException() {
        assertNotNull(new DBConfigException("JUnit Test"));
    }

    @Test
    public void testDBConfigExceptionString() {
        assertNotNull(new DBConfigException(new Exception("JUnit Test")));
    }

}