aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/constraints/MinLengthConstraintTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/constraints/MinLengthConstraintTest.java')
-rw-r--r--catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/constraints/MinLengthConstraintTest.java36
1 files changed, 0 insertions, 36 deletions
diff --git a/catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/constraints/MinLengthConstraintTest.java b/catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/constraints/MinLengthConstraintTest.java
deleted file mode 100644
index 1b8694f49e..0000000000
--- a/catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/constraints/MinLengthConstraintTest.java
+++ /dev/null
@@ -1,36 +0,0 @@
-package org.openecomp.sdc.be.model.tosca.constraints;
-
-import org.junit.Test;
-
-
-public class MinLengthConstraintTest {
-
- private MinLengthConstraint createTestSubject() {
- return new MinLengthConstraint(null);
- }
-
-
-
-
-
- @Test
- public void testGetMinLength() throws Exception {
- MinLengthConstraint testSubject;
- Integer result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getMinLength();
- }
-
-
- @Test
- public void testSetMinLength() throws Exception {
- MinLengthConstraint testSubject;
- Integer minLength = 0;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setMinLength(minLength);
- }
-} \ No newline at end of file