X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=common%2Fonap-tosca-datatype%2Fsrc%2Ftest%2Fjava%2Forg%2Fonap%2Fsdc%2Ftosca%2Fdatatypes%2Fmodel%2FScalarTest.java;fp=common%2Fonap-tosca-datatype%2Fsrc%2Ftest%2Fjava%2Forg%2Fonap%2Fsdc%2Ftosca%2Fdatatypes%2Fmodel%2FScalarTest.java;h=6b073a01a898968d541129b675749f3c1bffdbc9;hb=51a0f7b4a6c924c42955fa93042bd154cb636a16;hp=0000000000000000000000000000000000000000;hpb=b491e6c3e97f81487d9f70e31b4e1159fe7aa9e8;p=sdc.git diff --git a/common/onap-tosca-datatype/src/test/java/org/onap/sdc/tosca/datatypes/model/ScalarTest.java b/common/onap-tosca-datatype/src/test/java/org/onap/sdc/tosca/datatypes/model/ScalarTest.java new file mode 100644 index 0000000000..6b073a01a8 --- /dev/null +++ b/common/onap-tosca-datatype/src/test/java/org/onap/sdc/tosca/datatypes/model/ScalarTest.java @@ -0,0 +1,33 @@ +/*- + * ============LICENSE_START======================================================= + * SDC + * ================================================================================ + * Copyright (C) 2019 Nokia. All rights reserved. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============LICENSE_END========================================================= + */ + +package org.onap.sdc.tosca.datatypes.model; + +import org.junit.Test; + +import static com.google.code.beanmatchers.BeanMatchers.hasValidGettersAndSetters; +import static org.hamcrest.MatcherAssert.assertThat; + +public class ScalarTest { + @Test + public void shouldHaveValidGettersAndSetters() { + assertThat(Scalar.class, hasValidGettersAndSetters()); + } +} \ No newline at end of file