Convert junit4 to junit5
[policy/apex-pdp.git] / testsuites / integration / integration-common / src / test / java / org / onap / policy / apex / testsuites / integration / common / model / SampleDomainModelFactoryTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2018 Ericsson. All rights reserved.
4  *  Modifications Copyright (C) 2024 Nordix Foundation.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.apex.testsuites.integration.common.model;
23
24 import static org.junit.jupiter.api.Assertions.assertEquals;
25 import static org.junit.jupiter.api.Assertions.assertNotNull;
26
27 import org.junit.jupiter.api.Test;
28 import org.onap.policy.apex.model.policymodel.concepts.AxPolicyModel;
29
30 /**
31  * Test the evaluation domain model factory.
32  */
33 class SampleDomainModelFactoryTest {
34
35     @Test
36     void testSampleDomainModelFactory() {
37         SampleDomainModelFactory sdmf = new SampleDomainModelFactory();
38         assertNotNull(sdmf);
39
40         AxPolicyModel samplePolicyModel = sdmf.getSamplePolicyModel("JAVASCRIPT");
41         assertEquals("SamplePolicyModelJAVASCRIPT:0.0.1", samplePolicyModel.getId());
42
43         samplePolicyModel = sdmf.getSamplePolicyModel("JAVA");
44         assertEquals("SamplePolicyModelJAVA:0.0.1", samplePolicyModel.getId());
45
46         samplePolicyModel = sdmf.getSamplePolicyModel("JYTHON");
47         assertEquals("SamplePolicyModelJYTHON:0.0.1", samplePolicyModel.getId());
48
49         samplePolicyModel = sdmf.getSamplePolicyModel("JRUBY");
50         assertEquals("SamplePolicyModelJRUBY:0.0.1", samplePolicyModel.getId());
51
52         samplePolicyModel = sdmf.getSamplePolicyModel("MVEL");
53         assertEquals("SamplePolicyModelMVEL:0.0.1", samplePolicyModel.getId());
54     }
55 }