View Javadoc
1   /*
2   CustomImportOrder
3   customImportOrderRules = SPECIAL_IMPORTS###STANDARD_JAVA_PACKAGE
4   standardPackageRegExp = unit
5   thirdPartyPackageRegExp = (default).*
6   specialImportsRegExp = Test
7   separateLineBetweenGroups = (default)true
8   sortImportsInGroupAlphabetically = (default)false
9   
10  
11  */
12  
13  //non-compiled with javac: special package and requires imports from the same package
14  package com.puppycrawl.tools.checkstyle.checks.imports.customimportorder;
15  
16  import org.junit.Test;
17  
18  public class InputCustomImportOrder_MultiplePatternMatches2 {
19  }