Convert junit4 to junit5
[policy/apex-pdp.git] / testsuites / integration / integration-executor-test / src / test / java / org / onap / policy / apex / testsuites / integration / executor / handling / TestApexSamplePolicyCreateModelFiles.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  *  Modifications Copyright (C) 2021 AT&T Intellectual Property. All rights reserved.
5  *  Modifications Copyright (C) 2022, 2024 Nordix Foundation.
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  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.apex.testsuites.integration.executor.handling;
24
25 import static org.assertj.core.api.Assertions.assertThatCode;
26
27 import org.junit.jupiter.api.Test;
28 import org.onap.policy.apex.model.basicmodel.test.TestApexModel;
29 import org.onap.policy.apex.model.policymodel.concepts.AxPolicyModel;
30
31 class TestApexSamplePolicyCreateModelFiles {
32     @Test
33     void testModelWriteRead() {
34         String[] types = {"JAVA", "JAVASCRIPT", "JRUBY", "JYTHON", "MVEL"};
35         for (String type: types) {
36             final TestApexSamplePolicyModelCreator apexPolicyModelCreator = new TestApexSamplePolicyModelCreator(type);
37             final TestApexModel<AxPolicyModel> testApexPolicyModel =
38                     new TestApexModel<AxPolicyModel>(AxPolicyModel.class, apexPolicyModelCreator);
39             assertThatCode(testApexPolicyModel::testApexModelWriteReadJson).doesNotThrowAnyException();
40         }
41     }
42 }