summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsubhash kumar singh <subhash.kumar.singh@huawei.com>2018-02-28 11:03:41 +0000
committersubhash kumar singh <subhash.kumar.singh@huawei.com>2018-02-28 11:13:46 +0000
commitadc60db9f94296ddbb67bd0fda14ab7d15202de9 (patch)
tree9f245aaf1cdea1b97e6e0a07b06f4d28867f1bac
parent499d066482cc566ceba2c41ded1267a57aad4045 (diff)
Improve code coverage for libs
Improve code coverage for libs. Change-Id: I76066580000e7a8a6d8aef99e599ea3887c4a86c Issue-ID: SO-369 Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
-rw-r--r--glance-model/pom.xml9
-rw-r--r--glance-model/src/test/java/com/woorea/openstack/glance/model/ImageDownloadTest.java52
2 files changed, 61 insertions, 0 deletions
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 @@
<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
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