aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/openecomp/vid/policy/PolicyRestInterfaceTest.java
blob: 29e13624b875c36a3382a985e5cbd7c38ef5f6e2 (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
package org.openecomp.vid.policy;

import org.apache.poi.hssf.record.formula.functions.T;
import org.json.simple.JSONObject;
import org.junit.Test;
import org.openecomp.vid.policy.rest.RequestDetails;

public class PolicyRestInterfaceTest {

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


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

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