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

import org.junit.Test;


public class EqualConstraintTest {

	private EqualConstraint createTestSubject() {
		return new EqualConstraint("");
	}

	

	
	@Test
	public void testValidate() throws Exception {
		EqualConstraint testSubject;
		Object propertyValue = null;

		// test 1
		testSubject = createTestSubject();
		propertyValue = null;
		testSubject.validate(propertyValue);
	}

	

}