aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-dao/src/test/java/org/openecomp/sdc/be/resources/data/auditing/model/DistributionDataTest.java
blob: 2274a41888b070b8e62917a0e18d0dabc3236245 (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
package org.openecomp.sdc.be.resources.data.auditing.model;

import org.junit.Test;

public class DistributionDataTest {

	private DistributionData createTestSubject() {
		return new DistributionData("", "");
	}

	
	@Test
	public void testGetConsumerId() throws Exception {
		DistributionData testSubject;
		String result;

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

	
	@Test
	public void testGetResourceUrl() throws Exception {
		DistributionData testSubject;
		String result;

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