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