summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/openecomp/vid/policy/PolicyRestIntTest.java
blob: 541816562ae8c1e8fce28a7864c24cd3e6b5c6f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.openecomp.vid.policy;

import org.junit.Test;
import org.openecomp.vid.policy.rest.RequestDetails;

public class PolicyRestIntTest {

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

	@Test
	public void testLogRequest() throws Exception {
		PolicyRestInt testSubject;
		RequestDetails r = null;

		// test 1
		testSubject = createTestSubject();
		r = null;
		testSubject.logRequest(r);
	}
}