update the package name
[dmaap/messagerouter/messageservice.git] / src / test / java / com / att / nsa / dmaap / filemonitor / ServicePropertyServiceTest.java
1 /*-\r
2  * ============LICENSE_START=======================================================\r
3  * ONAP Policy Engine\r
4  * ================================================================================\r
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.\r
6  * ================================================================================\r
7  * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * you may not use this file except in compliance with the License.\r
9  * You may obtain a copy of the License at\r
10  * \r
11  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * \r
13  * Unless required by applicable law or agreed to in writing, software\r
14  * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * See the License for the specific language governing permissions and\r
17  * limitations under the License.\r
18  * ============LICENSE_END=========================================================\r
19  */\r
20 \r
21 package com.att.nsa.dmaap.filemonitor;\r
22 \r
23 import static org.junit.Assert.*;\r
24 \r
25 import java.io.File;\r
26 \r
27 import org.junit.After;\r
28 import org.junit.Before;\r
29 import org.junit.Test;\r
30 \r
31 public class ServicePropertyServiceTest {\r
32 \r
33         @Before\r
34         public void setUp() throws Exception {\r
35         }\r
36 \r
37         @After\r
38         public void tearDown() throws Exception {\r
39         }\r
40 \r
41         @Test\r
42         public void testInit() {\r
43 \r
44                 ServicePropertyService service = new ServicePropertyService();\r
45                 try {\r
46                         service.init();\r
47                 } catch (Exception e) {\r
48                         // TODO Auto-generated catch block\r
49                         e.printStackTrace();\r
50                 }\r
51                 assertTrue(true);\r
52 \r
53         }\r
54         \r
55         @Test\r
56         public void testsetLoadOnStartup() {\r
57 \r
58                 ServicePropertyService service = new ServicePropertyService();\r
59                 try {\r
60                         service.setLoadOnStartup(true);\r
61                 } catch (Exception e) {\r
62                         // TODO Auto-generated catch block\r
63                         e.printStackTrace();\r
64                 }\r
65                 assertTrue(true);\r
66 \r
67         }\r
68         \r
69         @Test\r
70         public void testSetSsfFileMonitorPollingInterval() {\r
71 \r
72                 ServicePropertyService service = new ServicePropertyService();\r
73                 try {\r
74                         service.setSsfFileMonitorPollingInterval("interval");\r
75                 } catch (Exception e) {\r
76                         // TODO Auto-generated catch block\r
77                         e.printStackTrace();\r
78                 }\r
79                 assertTrue(true);\r
80 \r
81         }\r
82         \r
83         @Test\r
84         public void testSetSsfFileMonitorThreadpoolSize() {\r
85 \r
86                 ServicePropertyService service = new ServicePropertyService();\r
87                 try {\r
88                         service.setSsfFileMonitorThreadpoolSize("threadPoolSize");\r
89                 } catch (Exception e) {\r
90                         // TODO Auto-generated catch block\r
91                         e.printStackTrace();\r
92                 }\r
93                 assertTrue(true);\r
94 \r
95         }\r
96         \r
97         @Test\r
98         public void testIsLoadOnStartup() {\r
99                 ServicePropertyService service = new ServicePropertyService();\r
100                 service.isLoadOnStartup();\r
101                 assertTrue(true);\r
102 \r
103         }\r
104         \r
105         @Test\r
106         public void testGetSsfFileMonitorPollingInterval() {\r
107                 ServicePropertyService service = new ServicePropertyService();\r
108                 service.getSsfFileMonitorPollingInterval();\r
109                 assertTrue(true);\r
110 \r
111         }\r
112         \r
113         @Test\r
114         public void testGetSsfFileMonitorThreadpoolSize() {\r
115                 ServicePropertyService service = new ServicePropertyService();\r
116                 service.getSsfFileMonitorThreadpoolSize();\r
117                 assertTrue(true);\r
118 \r
119         }\r
120         \r
121         @Test\r
122         public void testGetFileChangedListener() {\r
123                 ServicePropertyService service = new ServicePropertyService();\r
124                 service.getFileChangedListener();\r
125                 assertTrue(true);\r
126 \r
127         }\r
128         \r
129         @Test\r
130         public void testSetFileChangedListener() {\r
131                 ServicePropertyService service = new ServicePropertyService();\r
132                 service.setFileChangedListener(null);\r
133                 assertTrue(true);\r
134 \r
135         }\r
136         \r
137         @Test\r
138         public void testGetFilePropertiesMap() {\r
139                 ServicePropertyService service = new ServicePropertyService();\r
140                 service.getFilePropertiesMap();\r
141                 assertTrue(true);\r
142 \r
143         }\r
144         \r
145         @Test\r
146         public void testSetFilePropertiesMap() {\r
147                 ServicePropertyService service = new ServicePropertyService();\r
148                 service.setFilePropertiesMap(null);\r
149                 assertTrue(true);\r
150 \r
151         }\r
152 \r
153 }