Add unit test for vfc-nfvo-wfengine
[vfc/nfvo/wfengine.git] / wfenginemgrservice / src / test / java / org / onap / workflow / resources / ActivitiServiceConsumerTest.java
1 /**
2  * Copyright 2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.workflow.resources;
18
19 import org.junit.After;
20 import org.junit.AfterClass;
21 import org.junit.Before;
22 import org.junit.BeforeClass;
23 import org.junit.Test;
24
25 public class ActivitiServiceConsumerTest {
26
27   @BeforeClass
28   public static void setUpBeforeClass() throws Exception {}
29
30   @AfterClass
31   public static void tearDownAfterClass() throws Exception {}
32
33   @Before
34   public void setUp() throws Exception {}
35
36   @After
37   public void tearDown() throws Exception {}
38
39   @Test
40   public void testUndeploybpmnfile() {
41   }
42
43   @Test
44   public void testStartBpmnProcess() {
45   }
46
47   @Test
48   public void testDeleteDeployProcess() {
49   }
50
51   @Test
52   public void testStartProcess() {
53   }
54
55   @Test
56   public void testDeploybpmnfile() {
57   }
58
59 }