8ba509cf9c606bb502121647d7231beef6235af8
[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() throws Exception {
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() throws Exception {
26                 ArtifactsVertexResult testSubject;
27                 String result;
28
29                 // default test
30                 testSubject = createTestSubject();
31                 result = testSubject.getResult();
32         }
33 }