From: subhash kumar singh Date: Wed, 28 Feb 2018 11:03:41 +0000 (+0000) Subject: Improve code coverage for libs X-Git-Tag: v1.2.1~27 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F05%2F33405%2F1;p=so%2Flibs.git Improve code coverage for libs Improve code coverage for libs. Change-Id: I76066580000e7a8a6d8aef99e599ea3887c4a86c Issue-ID: SO-369 Signed-off-by: subhash kumar singh --- diff --git a/glance-model/pom.xml b/glance-model/pom.xml index b986a24..5e4a7a2 100644 --- a/glance-model/pom.xml +++ b/glance-model/pom.xml @@ -9,4 +9,13 @@ glance-model OpenStack Glance Model OpenStack Glance Model + + + + junit + junit + 4.12 + test + + \ No newline at end of file diff --git a/glance-model/src/test/java/com/woorea/openstack/glance/model/ImageDownloadTest.java b/glance-model/src/test/java/com/woorea/openstack/glance/model/ImageDownloadTest.java new file mode 100644 index 0000000..4ddfdcd --- /dev/null +++ b/glance-model/src/test/java/com/woorea/openstack/glance/model/ImageDownloadTest.java @@ -0,0 +1,52 @@ +/*- + * ============LICENSE_START======================================================= + * 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 com.woorea.openstack.glance.model; + +import org.junit.Test; + +import java.io.IOException; +import java.io.InputStream; + +public class ImageDownloadTest { + + ImageDownload imageDownload = new ImageDownload(); + + @Test + public void getImageTest() throws Exception { + imageDownload.getImage(); + } + + @Test + public void setImageTest() throws Exception { + imageDownload.setImage(new Image()); + } + + @Test + public void getInputStreamTest() throws Exception { + imageDownload.getInputStream(); + } + + @Test + public void setInputStreamTest() throws Exception { + imageDownload.setInputStream(new InputStream() { + @Override + public int read() throws IOException { + return 0; + } + }); + } + +} \ No newline at end of file