blob: 04f6890e23433571b6e7e472db5cc64a7bd12655 (
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.onap.vid.policy;
import org.apache.poi.hssf.record.formula.functions.T;
import org.json.simple.JSONObject;
import org.junit.Test;
import org.onap.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);
}
}
|