blob: ce038c349c52402ef93335617418cec266ee05ad [file] [log] [blame]
/*-
* ============LICENSE_START=======================================================
* OSAM
* ================================================================================
* Copyright (C) 2018 AT&T
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ============LICENSE_END=========================================================
*/
package org.onap.osam.aai.util;
public class AAIRestInterfaceTest {
/*
TO BE IMPLEMENTED
private AAIRestInterface createTestSubject() {
return new AAIRestInterface("");
}
@Test
public void testEncodeURL() throws Exception {
AAIRestInterface testSubject;
String nodeKey = "";
String result;
// default test
testSubject = createTestSubject();
result = testSubject.encodeURL(nodeKey);
}
@Test
public void testSetRestSrvrBaseURL() throws Exception {
AAIRestInterface testSubject;
String baseURL = "";
// test 1
testSubject = createTestSubject();
baseURL = null;
testSubject.SetRestSrvrBaseURL(baseURL);
// test 2
testSubject = createTestSubject();
baseURL = "";
testSubject.SetRestSrvrBaseURL(baseURL);
}
@Test
public void testGetRestSrvrBaseURL() throws Exception {
AAIRestInterface testSubject;
String result;
// default test
testSubject = createTestSubject();
result = testSubject.getRestSrvrBaseURL();
}
@Test
public void testRestPut() throws Exception {
AAIRestInterface testSubject;
String fromAppId = "";
String transId = "";
String path = "";
String payload = "";
boolean xml = false;
// default test
testSubject = createTestSubject();
testSubject.RestPut(fromAppId, transId, path, payload, xml);
}
@Test
public void testRestPost() throws Exception {
AAIRestInterface testSubject;
String fromAppId = "";
String transId = "";
String path = "";
String payload = "";
boolean xml = false;
// default test
testSubject = createTestSubject();
testSubject.RestPost(fromAppId, transId, path, payload, xml);
}*/
}