Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / so-bpmn-infrastructure-flows / src / test / java / org / onap / so / AllBPMNTestSuites.java
1 /*
2  *
3  * ============LICENSE_START======================================================= Copyright (C) 2019 Nordix
4  * Foundation. ================================================================================ Licensed under the
5  * Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may
6  * obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software
9  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
10  * either express or implied. See the License for the specific language governing permissions and limitations under the
11  * License.
12  *
13  * SPDX-License-Identifier: Apache-2.0 ============LICENSE_END=========================================================
14  */
15
16 package org.onap.so;
17
18 import com.googlecode.junittoolbox.SuiteClasses;
19 import com.googlecode.junittoolbox.WildcardPatternSuite;
20 import org.junit.runner.RunWith;
21
22 @RunWith(WildcardPatternSuite.class)
23 @SuiteClasses({"**/service/*Test.class", "**/process/*Test.class", "**/subprocess/*Test.class"})
24 public class AllBPMNTestSuites {
25     // the class remains empty,
26     // used only as a holder for the above annotations
27 }