aboutsummaryrefslogtreecommitdiffstats
path: root/sli/common/src/test/java/org/onap/ccsdk/sli/core/sli/DuplicatevalueExceptionTest.java
blob: 3878735576567e77b3c72b82987d239a2d1868b5 (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
25
26
27
28
package org.onap.ccsdk.sli.core.sli;

import static org.junit.Assert.*;

import org.junit.Test;

public class DuplicatevalueExceptionTest {

	
	@Test
	public void DuplicateValueExceptionTest() {
		assertNotNull(new DuplicateValueException());
	
	}
	
	@Test
	public void DuplicateValueExceptionTestString() {
		assertNotNull(new DuplicateValueException("JUnit Test"));
	
	}
	
	@Test
	public void DuplicateValueExceptionTestStringThrowable() {
		assertNotNull(new DuplicateValueException("JUnit Test", new Exception("JUnit Test")));
	
	}

}