8c31a021ae57044d0b5a2d3554db1cfa738d9285
[so.git] / bpmn / mso-infrastructure-bpmn / src / test / java / org / onap / so / bpmn / vcpe / AbstractTestBase.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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.so.bpmn.vcpe;
22
23 import org.onap.so.BaseIntegrationTest;
24 import org.onap.so.bpmn.infrastructure.FlakyTests;
25
26 import groovy.lang.Category;
27
28
29 @Category(FlakyTests.class)
30 public class AbstractTestBase extends BaseIntegrationTest {
31         
32         
33         public static final String CUST = "SDN-ETHERNET-INTERNET";
34         public static final String SVC = "123456789";
35         public static final String INST = "MIS%252F1604%252F0026%252FSW_INTERNET";
36         public static final String PARENT_INST = "MIS%252F1604%252F0027%252FSW_INTERNET";
37         public static final String ARID = "arId-1";
38         public static final String ARVERS = "1490627351232";
39
40         public static final String DEC_INST = "MIS%2F1604%2F0026%2FSW_INTERNET";
41         public static final String DEC_PARENT_INST = "MIS%2F1604%2F0027%2FSW_INTERNET";
42
43         public static final String VAR_SUCCESS_IND = "SuccessIndicator";
44         public static final String VAR_WFEX = "SavedWorkflowException1";
45         public static final String VAR_RESP_CODE = "CMSO_ResponseCode";
46         public static final String VAR_COMP_REQ = "CompleteMsoProcessRequest";
47 }