summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/exception/SdcActionExceptionTest.java
blob: 487886eeca4073d4ec328fca8b2ca332f58b3769 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.openecomp.sdc.be.exception;

import org.junit.Test;
import org.openecomp.sdc.be.dao.api.ActionStatus;

public class SdcActionExceptionTest {

	private SdcActionException createTestSubject() {
		return new SdcActionException(ActionStatus.AAI_ARTIFACT_GENERATION_FAILED);
	}

	@Test
	public void testGetActionStatus() throws Exception {
		SdcActionException testSubject;
		ActionStatus result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.getActionStatus();
	}
}