aboutsummaryrefslogtreecommitdiffstats
path: root/asdctool/src/test/java/org/openecomp/sdc/asdctool/impl/validator/tasks/artifacts/ArtifactsVertexResultTest.java
blob: d16c3fc5557df0b1732f59556002cf9c92f1af98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package org.openecomp.sdc.asdctool.impl.validator.tasks.artifacts;

import org.junit.Test;


public class ArtifactsVertexResultTest {

	private ArtifactsVertexResult createTestSubject() {
		return new ArtifactsVertexResult();
	}

	
	@Test
	public void testAddNotFoundArtifact() {
		ArtifactsVertexResult testSubject;
		String artifactId = "";

		// default test
		testSubject = createTestSubject();
		testSubject.addNotFoundArtifact(artifactId);
	}

	
	@Test
	public void testGetResult() {
		ArtifactsVertexResult testSubject;
		String result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.getResult();
	}
}