f004827aee5de0c8f3d95ececf21417a267d89e8
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / query / builder / optimization / tests / AOneTenantOneVserversPerTenantTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 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 package org.onap.aai.query.builder.optimization.tests;
21
22 import org.junit.BeforeClass;
23 import org.junit.Ignore;
24 import org.onap.aai.query.builder.optimization.AbstractGraphTraversalBuilderTestQueryiesToRun;
25
26 @Ignore
27 public class AOneTenantOneVserversPerTenantTest extends AbstractGraphTraversalBuilderTestQueryiesToRun {
28
29         private static int tenantNum = 1;
30         private static int vserverPerTenantNum = 1;
31         private static String prefix = AOneTenantOneVserversPerTenantTest.class.getSimpleName() + "-";
32
33         @BeforeClass
34         public void setup() throws Exception {
35                 setupData(tenantNum,vserverPerTenantNum, prefix);
36         }
37
38         @Override
39         protected int getTenantNum() {
40                 return tenantNum;
41         }
42
43         @Override
44         protected int getVserverNumPerTenant() {
45                 return vserverPerTenantNum;
46         }
47
48         @Override
49         protected String getPrefix() {
50                 return prefix;
51         }
52
53 }