summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/components/distribution/engine/rest/DistributionStatusRequestTest.java
blob: ea18dab68aa15c984e97b4fdb2a2fce1c5afcdbe (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
29
30
package org.openecomp.sdc.be.components.distribution.engine.rest;

import org.junit.Test;

public class DistributionStatusRequestTest {

	private DistributionStatusRequest createTestSubject() {
		return new DistributionStatusRequest("", "");
	}

	@Test
	public void testGetStatus() throws Exception {
		DistributionStatusRequest testSubject;
		String result;

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

	@Test
	public void testGetErrorReason() throws Exception {
		DistributionStatusRequest testSubject;
		String result;

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