aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/policy/PolicyRestIntTest.java
blob: b94d21b9190c8c3b7a1268cf70e6f582af6a3054 (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.onap.vid.policy;

import org.junit.Test;
import org.onap.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);
	}
}