use of com.puppycrawl.tools.checkstyle.api.Configuration in project checkstyle by checkstyle.
the class InterfaceTypeParameterNameTest method testInterfaceDefault.
@Test
public void testInterfaceDefault() throws Exception {
final Configuration configuration = getCheckConfig("InterfaceTypeParameterName");
final String format = configuration.getAttribute("format");
final String[] expected = { "48:15: " + getCheckMessage(configuration.getMessages(), MSG_KEY, "Input", format), "76:25: " + getCheckMessage(configuration.getMessages(), MSG_KEY, "Request", format), "80:25: " + getCheckMessage(configuration.getMessages(), MSG_KEY, "TRequest", format) };
final String filePath = getPath("InputInterfaceTypeParameterName.java");
final Integer[] warnList = getLinesWithWarn(filePath);
verify(configuration, filePath, expected, warnList);
}
use of com.puppycrawl.tools.checkstyle.api.Configuration in project checkstyle by checkstyle.
the class AbbreviationAsWordInNameTest method abbreviationAsWordInNameTest.
@Test
public void abbreviationAsWordInNameTest() throws Exception {
final int maxCapitalCount = 2;
final String[] expected = { "50: " + getWarningMessage("newCustomerID", maxCapitalCount), "52: " + getWarningMessage("supportsIPv6OnIOS", maxCapitalCount), "54: " + getWarningMessage("XMLHTTPRequest", maxCapitalCount), "58: " + getWarningMessage("newCustomerID", maxCapitalCount), "60: " + getWarningMessage("supportsIPv6OnIOS", maxCapitalCount), "62: " + getWarningMessage("XMLHTTPRequest", maxCapitalCount), "67: " + getWarningMessage("newCustomerID", maxCapitalCount), "69: " + getWarningMessage("supportsIPv6OnIOS", maxCapitalCount), "71: " + getWarningMessage("XMLHTTPRequest", maxCapitalCount) };
final String filePath = getPath("InputAbbreviationAsWordInTypeNameCheck.java");
final Configuration checkConfig = getCheckConfig("AbbreviationAsWordInName");
final Integer[] warnList = getLinesWithWarn(filePath);
verify(checkConfig, filePath, expected, warnList);
}
use of com.puppycrawl.tools.checkstyle.api.Configuration in project checkstyle by checkstyle.
the class OverloadMethodsDeclarationOrderTest method overloadMethodsTest.
@Test
public void overloadMethodsTest() throws Exception {
final Class<OverloadMethodsDeclarationOrderCheck> clazz = OverloadMethodsDeclarationOrderCheck.class;
final String messageKey = "overload.methods.declaration";
final String[] expected = { "26: " + getCheckMessage(clazz, messageKey, 15), "54: " + getCheckMessage(clazz, messageKey, 43), "66: " + getCheckMessage(clazz, messageKey, 64), "109: " + getCheckMessage(clazz, messageKey, 98) };
final Configuration checkConfig = getCheckConfig("OverloadMethodsDeclarationOrder");
final String filePath = getPath("InputOverloadMethodsDeclarationOrder.java");
final Integer[] warnList = getLinesWithWarn(filePath);
verify(checkConfig, filePath, expected, warnList);
}
use of com.puppycrawl.tools.checkstyle.api.Configuration in project checkstyle by checkstyle.
the class NeedBracesTest method needBracesTest.
@Test
public void needBracesTest() throws Exception {
final Class<NeedBracesCheck> clazz = NeedBracesCheck.class;
final String messageKey = "needBraces";
final String[] expected = { "29: " + getCheckMessage(clazz, messageKey, "do"), "41: " + getCheckMessage(clazz, messageKey, "while"), "42: " + getCheckMessage(clazz, messageKey, "while"), "44: " + getCheckMessage(clazz, messageKey, "while"), "45: " + getCheckMessage(clazz, messageKey, "if"), "58: " + getCheckMessage(clazz, messageKey, "for"), "59: " + getCheckMessage(clazz, messageKey, "for"), "61: " + getCheckMessage(clazz, messageKey, "for"), "63: " + getCheckMessage(clazz, messageKey, "if"), "82: " + getCheckMessage(clazz, messageKey, "if"), "83: " + getCheckMessage(clazz, messageKey, "if"), "85: " + getCheckMessage(clazz, messageKey, "if"), "87: " + getCheckMessage(clazz, messageKey, "else"), "89: " + getCheckMessage(clazz, messageKey, "if"), "97: " + getCheckMessage(clazz, messageKey, "else"), "99: " + getCheckMessage(clazz, messageKey, "if"), "100: " + getCheckMessage(clazz, messageKey, "if"), "126: " + getCheckMessage(clazz, messageKey, "while"), "129: " + getCheckMessage(clazz, messageKey, "do"), "135: " + getCheckMessage(clazz, messageKey, "if"), "138: " + getCheckMessage(clazz, messageKey, "if"), "139: " + getCheckMessage(clazz, messageKey, "else"), "144: " + getCheckMessage(clazz, messageKey, "for"), "147: " + getCheckMessage(clazz, messageKey, "for"), "157: " + getCheckMessage(clazz, messageKey, "while"), "160: " + getCheckMessage(clazz, messageKey, "do"), "166: " + getCheckMessage(clazz, messageKey, "if"), "169: " + getCheckMessage(clazz, messageKey, "if"), "170: " + getCheckMessage(clazz, messageKey, "else"), "175: " + getCheckMessage(clazz, messageKey, "for"), "178: " + getCheckMessage(clazz, messageKey, "for"), "189: " + getCheckMessage(clazz, messageKey, "while"), "192: " + getCheckMessage(clazz, messageKey, "do"), "198: " + getCheckMessage(clazz, messageKey, "if"), "201: " + getCheckMessage(clazz, messageKey, "if"), "202: " + getCheckMessage(clazz, messageKey, "else"), "207: " + getCheckMessage(clazz, messageKey, "for"), "210: " + getCheckMessage(clazz, messageKey, "for") };
final Configuration checkConfig = getCheckConfig("NeedBraces");
final String filePath = getPath("InputNeedBraces.java");
final Integer[] warnList = getLinesWithWarn(filePath);
verify(checkConfig, filePath, expected, warnList);
}
use of com.puppycrawl.tools.checkstyle.api.Configuration in project checkstyle by checkstyle.
the class LeftCurlyTest method leftCurlyBracesTest.
@Test
public void leftCurlyBracesTest() throws Exception {
final String[] expected = { "4:1: " + getCheckMessage(LeftCurlyCheck.class, MSG_KEY_LINE_PREVIOUS, "{", 1), "7:5: " + getCheckMessage(LeftCurlyCheck.class, MSG_KEY_LINE_PREVIOUS, "{", 5), "13:5: " + getCheckMessage(LeftCurlyCheck.class, MSG_KEY_LINE_PREVIOUS, "{", 5), "26:5: " + getCheckMessage(LeftCurlyCheck.class, MSG_KEY_LINE_PREVIOUS, "{", 5), "43:5: " + getCheckMessage(LeftCurlyCheck.class, MSG_KEY_LINE_PREVIOUS, "{", 5), "61:5: " + getCheckMessage(LeftCurlyCheck.class, MSG_KEY_LINE_PREVIOUS, "{", 5), "97:5: " + getCheckMessage(LeftCurlyCheck.class, MSG_KEY_LINE_PREVIOUS, "{", 5) };
final Configuration checkConfig = getCheckConfig("LeftCurly");
final String filePath = getPath("InputLeftCurlyBraces.java");
final Integer[] warnList = getLinesWithWarn(filePath);
verify(checkConfig, filePath, expected, warnList);
}
Aggregations