Added oparent to sdc main
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / components / scheduledtasks / AsdcComponentsCleanerTaskTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 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.openecomp.sdc.be.components.scheduledtasks;
22
23 import mockit.Deencapsulation;
24 import org.junit.Test;
25 import org.openecomp.sdc.be.components.BeConfDependentTest;
26
27 import java.util.concurrent.ExecutorService;
28
29 public class AsdcComponentsCleanerTaskTest extends BeConfDependentTest{
30
31         private AsdcComponentsCleanerTask createTestSubject() {
32                 return new AsdcComponentsCleanerTask();
33         }
34
35         @Test
36         public void testInit() throws Exception {
37                 AsdcComponentsCleanerTask testSubject;
38
39                 // default test
40                 testSubject = createTestSubject();
41                 testSubject.init();
42         }
43
44         @Test
45         public void testDestroy() throws Exception {
46                 AsdcComponentsCleanerTask testSubject;
47
48                 // default test
49                 testSubject = createTestSubject();
50                 testSubject.destroy();
51         }
52
53         @Test
54         public void testStartTask() throws Exception {
55                 AsdcComponentsCleanerTask testSubject;
56
57                 // default test
58                 testSubject = createTestSubject();
59                 testSubject.startTask();
60         }
61
62         @Test
63         public void testStopTask() throws Exception {
64                 AsdcComponentsCleanerTask testSubject;
65
66                 // default test
67                 testSubject = createTestSubject();
68                 Deencapsulation.invoke(testSubject, "stopTask");
69                 testSubject.init();
70                 testSubject.startTask();
71                 Deencapsulation.invoke(testSubject, "stopTask");
72         }
73
74         @Test
75         public void testRun() throws Exception {
76                 AsdcComponentsCleanerTask testSubject;
77
78                 // default test
79                 testSubject = createTestSubject();
80                 testSubject.run();
81         }
82
83         @Test
84         public void testGetExecutorService() throws Exception {
85                 AsdcComponentsCleanerTask testSubject;
86                 ExecutorService result;
87
88                 // default test
89                 testSubject = createTestSubject();
90                 result = testSubject.getExecutorService();
91         }
92 }