diff options
Diffstat (limited to 'glance-model')
-rw-r--r-- | glance-model/pom.xml | 9 | ||||
-rw-r--r-- | glance-model/src/test/java/com/woorea/openstack/glance/model/ImageDownloadTest.java | 52 |
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 |