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

import static org.junit.Assert.*;

import org.junit.Test;

public class DblibConfigurationExceptionTest {

    @Test
    public void testDblibConfigurationException() {
        assertNotNull(new DblibConfigurationException());
    }

    @Test
    public void testDblibConfigurationExceptionString() {
        assertNotNull(new DblibConfigurationException("JUnit Test"));
    }

    @Test
    public void testDblibConfigurationExceptionStringThrowable() {
        assertNotNull(new DblibConfigurationException("JUnit Test", new Exception("JUnit Test")));
    }

}