1 package org.openecomp.sdc.asdctool.impl.validator.tasks.artifacts;
6 public class ArtifactsVertexResultTest {
8 private ArtifactsVertexResult createTestSubject() {
9 return new ArtifactsVertexResult();
14 public void testAddNotFoundArtifact() throws Exception {
15 ArtifactsVertexResult testSubject;
16 String artifactId = "";
19 testSubject = createTestSubject();
20 testSubject.addNotFoundArtifact(artifactId);
25 public void testGetResult() throws Exception {
26 ArtifactsVertexResult testSubject;
30 testSubject = createTestSubject();
31 result = testSubject.getResult();