summaryrefslogtreecommitdiffstats
path: root/catalog-dao/src/test/java/org/openecomp/sdc/be/resources/data/auditing/model/DistributionDataTest.java
blob: 606e219b391add38534b72d32ccb9b01ee1f9ccc (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
34
35
package org.openecomp.sdc.be.resources.data.auditing.model;

import javax.annotation.Generated;

import org.junit.Test;

@Generated(value = "org.junit-tools-1.0.6")
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();
	}
}