aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/imports/InputCustomImportOrder2.java
blob: 01cf3d8139a65acf56f458d713f67fbc327c9e36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.puppycrawl.tools.checkstyle.checks.imports;

import static java.io.File.createTempFile;
import static java.awt.Button.ABORT; //warn, LEXIC, should be before java.io.File.createTempFile
import static javax.swing.WindowConstants.*;

import java.util.List; //warn, LEXIC, should be before javax.swing.WindowConstants.*
import java.util.StringTokenizer; //warn, LEXIC, should be before javax.swing.WindowConstants.*
import java.util.*; //warn, LEXIC, should be before javax.swing.WindowConstants.*
import java.util.concurrent.AbstractExecutorService; //warn, LEXIC, should be before javax.swing.WindowConstants.*
import java.util.concurrent.*; //warn, LEXIC, should be before javax.swing.WindowConstants.*

import com.puppycrawl.tools.*;
import com.*; //warn, LEXIC, should be before com.puppycrawl.tools.*

import com.google.common.base.*; //warn, LEXIC, should be before com.puppycrawl.tools.*
import org.junit.*;

public class InputCustomImportOrder2 {
}
/*
test: testOrderRuleWithOneGroup()
configuration:
        checkConfig.addAttribute("thirdPartyPackageRegExp", "org.");
        checkConfig.addAttribute("customImportOrderRules",
                "STANDARD_JAVA_PACKAGE");
        checkConfig.addAttribute("sortImportsInGroupAlphabetically", "true");
*/