Added oparent to sdc main
[sdc.git] / catalog-model / src / test / java / org / openecomp / sdc / be / model / tosca / validators / ToscaBooleanValidatorTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.be.model.tosca.validators;
22
23 import org.junit.Test;
24 import org.openecomp.sdc.be.model.DataTypeDefinition;
25
26 import java.util.Map;
27
28 public class ToscaBooleanValidatorTest {
29
30         private ToscaBooleanValidator createTestSubject() {
31                 return ToscaBooleanValidator.getInstance();
32         }
33
34         
35         @Test
36         public void testGetInstance() throws Exception {
37                 ToscaBooleanValidator result;
38
39                 // default test
40                 result = ToscaBooleanValidator.getInstance();
41         }
42
43         
44         @Test
45         public void testIsValid() throws Exception {
46                 ToscaBooleanValidator testSubject;
47                 String value = "";
48                 String innerType = "";
49                 Map<String, DataTypeDefinition> dataTypes = null;
50                 boolean result;
51
52                 // test 1
53                 testSubject = createTestSubject();
54                 value = null;
55                 result = testSubject.isValid(value, innerType, dataTypes);
56
57                 // test 2
58                 testSubject = createTestSubject();
59                 value = "";
60                 result = testSubject.isValid(value, innerType, dataTypes);
61         }
62
63         
64         @Test
65         public void testIsValid_1() throws Exception {
66                 ToscaBooleanValidator testSubject;
67                 String value = "";
68                 String innerType = "";
69                 boolean result;
70
71                 // default test
72                 testSubject = createTestSubject();
73                 result = testSubject.isValid(value, innerType);
74         }
75 }