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

import javax.annotation.Generated;

import org.junit.Test;
import org.openecomp.sdc.be.model.tosca.ToscaType;


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

	

}