summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/components/distribution/engine/ServiceArtifactInfoImplTest.java
blob: b38e1f5fa9a863e7a772389308de4a84ec014e16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.openecomp.sdc.be.components.distribution.engine;

import org.junit.Test;

public class ServiceArtifactInfoImplTest {

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

	@Test
	public void testToString() throws Exception {
		ServiceArtifactInfoImpl testSubject;
		String result;

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