Refactoring Consolidation Service
[sdc.git] / catalog-model / src / test / java / org / openecomp / sdc / be / model / tosca / constraints / EqualConstraintTest.java
1 package org.openecomp.sdc.be.model.tosca.constraints;
2
3 import org.junit.Test;
4
5
6 public class EqualConstraintTest {
7
8         private EqualConstraint createTestSubject() {
9                 return new EqualConstraint("");
10         }
11
12         
13
14         
15         @Test
16         public void testValidate() throws Exception {
17                 EqualConstraint testSubject;
18                 Object propertyValue = null;
19
20                 // test 1
21                 testSubject = createTestSubject();
22                 propertyValue = null;
23                 testSubject.validate(propertyValue);
24         }
25
26         
27
28 }