From a2d0b413885ca8fcbfe31fe30d21cc0fa9aec49b Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Mon, 6 Aug 2018 09:44:06 +0200 Subject: [PATCH] [jsp] add test for jspx extension Refs #1276 --- .../test/java/net/sourceforge/pmd/lang/jsp/JspParserTest.java | 1 + 1 file changed, 1 insertion(+) diff --git a/pmd-jsp/src/test/java/net/sourceforge/pmd/lang/jsp/JspParserTest.java b/pmd-jsp/src/test/java/net/sourceforge/pmd/lang/jsp/JspParserTest.java index df3df0689f..6f4cae6f8b 100644 --- a/pmd-jsp/src/test/java/net/sourceforge/pmd/lang/jsp/JspParserTest.java +++ b/pmd-jsp/src/test/java/net/sourceforge/pmd/lang/jsp/JspParserTest.java @@ -61,6 +61,7 @@ public class JspParserTest { @Test public void testParseJsp() { testInternalJspFile(Paths.get("sample.jsp").toFile()); + testInternalJspFile(Paths.get("sample.jspx").toFile()); } @Test