JUnit test for policy/engine PolicyEngineAPI
[policy/engine.git] / PolicyEngineAPI / src / test / java / org / onap / policy / test / PolicyDecisionTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * PolicyEngineAPI
4  * ================================================================================
5  * Copyright (C) 2017 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.onap.policy.test;
22
23 import static org.junit.Assert.assertEquals;
24
25 import org.junit.Test;
26 import org.onap.policy.api.PolicyDecision;
27
28 /**
29  * The class <code>PolicyDecisionTest</code> contains tests for the class
30  * <code>{@link PolicyDecision}</code>.
31  *
32  * @generatedBy CodePro at 6/1/16 1:41 PM
33  * @version $Revision: 1.0 $
34  */
35 public class PolicyDecisionTest {
36
37     @Test
38     public void testCreate_EnumName_PolicyDecisionEnum() {
39         for (final PolicyDecision policyDecision : PolicyDecision.values()) {
40             final PolicyDecision actualPolicyDecision = PolicyDecision.create(policyDecision.name());
41             assertEquals(policyDecision, actualPolicyDecision);
42             assertEquals(policyDecision.toString(), actualPolicyDecision.toString());
43         }
44     }
45
46     @Test
47     public void testCreate_StringValue_PolicyDecisionEnum() {
48         for (final PolicyDecision policyDecision : PolicyDecision.values()) {
49             final PolicyDecision autalPolicyDecision = PolicyDecision.create(policyDecision.toString());
50             assertEquals(policyDecision, autalPolicyDecision);
51         }
52     }
53
54     @Test(expected = IllegalArgumentException.class)
55     public void testException() {
56         PolicyDecision.create("foobar");
57     }
58
59     /**
60      * Launch the test.
61      *
62      * @param args
63      *            the command line arguments
64      *
65      * @generatedBy CodePro at 6/1/16 1:41 PM
66      */
67     public static void main(final String[] args) {
68         new org.junit.runner.JUnitCore().run(PolicyDecisionTest.class);
69     }
70 }