Remove useless imports and vars
[policy/engine.git] / PolicyEngineAPI / src / test / java / org / onap / policy / test / PolicyClassTest.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.PolicyClass;
27
28 /**
29  * The class <code>PolicyClassTest</code> contains tests for the class
30  * <code>{@link PolicyClass}</code>.
31  *
32  * @generatedBy CodePro at 6/1/16 1:40 PM
33  * @version $Revision: 1.0 $
34  */
35 public class PolicyClassTest {
36
37     @Test
38     public void testToString_1() {
39         final PolicyClass fixture = PolicyClass.Action;
40
41         final String result = fixture.toString();
42
43         // add additional test code here
44         assertEquals("Action", result);
45
46         assertEquals(PolicyClass.Decision, PolicyClass.create(PolicyClass.Decision.toString()));
47     }
48
49     @Test
50     public void testCreate_EnumName_PolicyClassEnum() {
51         for (final PolicyClass policyClass : PolicyClass.values()) {
52             final PolicyClass actualPolicyClass = PolicyClass.create(policyClass.name());
53             assertEquals(policyClass, actualPolicyClass);
54             assertEquals(policyClass.toString(), actualPolicyClass.toString());
55         }
56     }
57
58     @Test
59     public void testCreate_StringValue_PolicyClassEnum() {
60         for (final PolicyClass policyClass : PolicyClass.values()) {
61             final PolicyClass actualPolicyClass = PolicyClass.create(policyClass.toString());
62             assertEquals(policyClass, actualPolicyClass);
63         }
64     }
65
66     @Test(expected = IllegalArgumentException.class)
67     public void testException() {
68         PolicyClass.create("foobar");
69     }
70
71     /**
72      * Launch the test.
73      *
74      * @param args
75      *            the command line arguments
76      *
77      * @generatedBy CodePro at 6/1/16 1:40 PM
78      */
79     public static void main(final String[] args) {
80         new org.junit.runner.JUnitCore().run(PolicyClassTest.class);
81     }
82 }