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