summaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/constraints/PatternConstraintTest.java
blob: 07c657ceace86f364ec1002acc9591d89630c7b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.openecomp.sdc.be.model.tosca.constraints;

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);
	}

}