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