blob: 93230e616df540a21f9eb9c5311f5d5952561a9c [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.mso;
import org.junit.Assert;
import org.junit.Test;
public class MsoUtilTest {
private MsoUtil createTestSubject() {
return new MsoUtil();
}
@Test
public void testWrapResponse() throws Exception {
String body = "";
int statusCode = 0;
MsoResponseWrapper result;
// default test
result = MsoUtil.wrapResponse(body, statusCode);
}
@Test
public void testWrapResponse_2() throws Exception {
RestObject<String> rs = null;
MsoResponseWrapper result;
// test 1
result = MsoUtil.wrapResponse(rs);
Assert.assertNotNull(result);
}
@Test
public void testConvertPojoToString() throws Exception {
String result;
// test 1
result = MsoUtil.convertPojoToString(null);
Assert.assertEquals("", result);
}
@Test
public void testMain() throws Exception {
String[] args = new String[] { "" };
// default test
MsoUtil.main(args);
}
}