Reformat PolicyEngineAPI test cases
[policy/engine.git] / PolicyEngineAPI / src / test / java / org / onap / policy / test / AttributeTypeTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * PolicyEngineAPI
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (C) 2019 Samsung
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.test;
24
25 import org.junit.*;
26 import org.onap.policy.api.AttributeType;
27 import static org.junit.Assert.*;
28
29 /**
30  * The class <code>AttributeTypeTest</code> contains tests for the class
31  * <code>{@link AttributeType}</code>.
32  *
33  * @generatedBy CodePro at 6/1/16 1:40 PM
34  * @version $Revision: 1.0 $
35  */
36 public class AttributeTypeTest {
37     /**
38      * Run the String toString() method test.
39      *
40      * @throws Exception
41      *
42      * @generatedBy CodePro at 6/1/16 1:40 PM
43      */
44     @Test
45     public void testToString_1() throws Exception {
46         AttributeType fixture = AttributeType.MATCHING;
47
48         String result = fixture.toString();
49
50         // add additional test code here
51         assertEquals("matching", result);
52
53         AttributeType type = AttributeType.create("dictionary");
54         assertEquals(AttributeType.DICTIONARY, type);
55
56     }
57
58     @Test(expected = IllegalArgumentException.class)
59     public void testException() {
60         AttributeType.create("foobar");
61     }
62
63     /**
64      * Perform pre-test initialization.
65      *
66      * @throws Exception if the initialization fails for some reason
67      *
68      * @generatedBy CodePro at 6/1/16 1:40 PM
69      */
70     @Before
71     public void setUp() throws Exception {
72         // add additional set up code here
73     }
74
75     /**
76      * Perform post-test clean-up.
77      *
78      * @throws Exception if the clean-up fails for some reason
79      *
80      * @generatedBy CodePro at 6/1/16 1:40 PM
81      */
82     @After
83     public void tearDown() throws Exception {
84         // Add additional tear down code here
85     }
86 }