Improve code coverage for libs 05/33405/1
authorsubhash kumar singh <subhash.kumar.singh@huawei.com>
Wed, 28 Feb 2018 11:03:41 +0000 (11:03 +0000)
committersubhash kumar singh <subhash.kumar.singh@huawei.com>
Wed, 28 Feb 2018 11:13:46 +0000 (11:13 +0000)
Improve code coverage for libs.

Change-Id: I76066580000e7a8a6d8aef99e599ea3887c4a86c
Issue-ID: SO-369
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
glance-model/pom.xml
glance-model/src/test/java/com/woorea/openstack/glance/model/ImageDownloadTest.java [new file with mode: 0644]

index b986a24..5e4a7a2 100644 (file)
@@ -9,4 +9,13 @@
        <artifactId>glance-model</artifactId>
        <name>OpenStack Glance Model</name>
        <description>OpenStack Glance Model</description>
+
+       <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.12</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
 </project>
\ 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 (file)
index 0000000..4ddfdcd
--- /dev/null
@@ -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