aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/constraints/PatternConstraintTest.java
blob: 1a20abbaceaedf3b5d3a0c7bac9d48e91ac24b07 (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
package org.openecomp.sdc.be.model.tosca.constraints;

import javax.annotation.Generated;

import org.junit.Test;


public class PatternConstraintTest {

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

	
	@Test
	public void testSetPattern() throws Exception {
		PatternConstraint testSubject;
		String pattern = "";

		// default test
		testSubject = createTestSubject();
		testSubject.setPattern(pattern);
	}

}