aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/openecomp/vid/scheduler/rest/RequestDetailsTest.java
blob: 190b8c5a71c7cc233f14e46ba2b5e7f80a9b3442 (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
31
32
33
package org.openecomp.vid.scheduler.rest;

import org.junit.Test;


public class RequestDetailsTest {

	private RequestDetails createTestSubject() {
		return new RequestDetails();
	}


	@Test
	public void testGetDomain() throws Exception {
		RequestDetails testSubject;
		String result;

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


	@Test
	public void testSetDomain() throws Exception {
		RequestDetails testSubject;
		String domain = "";

		// default test
		testSubject = createTestSubject();
		testSubject.setDomain(domain);
	}
}