Raise JUnit coverage asdctool
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / impl / validator / tasks / artifacts / ArtifactsVertexResultTest.java
1 package org.openecomp.sdc.asdctool.impl.validator.tasks.artifacts;
2
3 import org.junit.Test;
4
5 public class ArtifactsVertexResultTest {
6
7         private ArtifactsVertexResult createTestSubject() {
8                 return new ArtifactsVertexResult();
9         }
10
11         @Test
12         public void testAddNotFoundArtifact() {
13                 ArtifactsVertexResult testSubject;
14                 String artifactId = "";
15
16                 // default test
17                 testSubject = createTestSubject();
18                 testSubject.addNotFoundArtifact(artifactId);
19         }
20
21         @Test
22         public void testGetResult() {
23                 ArtifactsVertexResult testSubject;
24                 String result;
25
26                 // default test
27                 testSubject = createTestSubject();
28                 result = testSubject.getResult();
29         }
30 }