aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-squid/src/test/java/org/sonar/squid/text/LiteralValueHandlerTest.java
diff options
context:
space:
mode:
authorsimonbrandhof <simon.brandhof@gmail.com>2010-09-06 14:08:06 +0000
committersimonbrandhof <simon.brandhof@gmail.com>2010-09-06 14:08:06 +0000
commitaeadc1f9129274949daaa57738c7c4550bdfbc7b (patch)
tree08dadf5ef7474fc41d1d48f74648f1ba8b55f34d /sonar-squid/src/test/java/org/sonar/squid/text/LiteralValueHandlerTest.java
downloadsonarqube-aeadc1f9129274949daaa57738c7c4550bdfbc7b.tar.gz
sonarqube-aeadc1f9129274949daaa57738c7c4550bdfbc7b.zip
SONAR-236 remove deprecated code from checkstyle plugin + display default value of rule parameters in Q profile console
Diffstat (limited to 'sonar-squid/src/test/java/org/sonar/squid/text/LiteralValueHandlerTest.java')
-rw-r--r--sonar-squid/src/test/java/org/sonar/squid/text/LiteralValueHandlerTest.java53
1 files changed, 53 insertions, 0 deletions
diff --git a/sonar-squid/src/test/java/org/sonar/squid/text/LiteralValueHandlerTest.java b/sonar-squid/src/test/java/org/sonar/squid/text/LiteralValueHandlerTest.java
new file mode 100644
index 00000000000..b91af09540b
--- /dev/null
+++ b/sonar-squid/src/test/java/org/sonar/squid/text/LiteralValueHandlerTest.java
@@ -0,0 +1,53 @@
+/*
+ * Sonar, open source software quality management tool.
+ * Copyright (C) 2009 SonarSource SA
+ * mailto:contact AT sonarsource DOT com
+ *
+ * Sonar is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * Sonar is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with Sonar; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
+ */
+package org.sonar.squid.text;
+
+import org.junit.Test;
+
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertTrue;
+
+public class LiteralValueHandlerTest {
+
+ @Test
+ public void matchToBegin() {
+ LiteralValueHandler handler = new LiteralValueHandler('"');
+ assertTrue(handler.matchToBegin(new Line(), new StringBuilder("toto = \"")));
+ assertFalse(handler.matchToBegin(new Line(), new StringBuilder("toto = \'")));
+ }
+
+ @Test
+ public void matchToEnd() {
+ LiteralValueHandler handler = new LiteralValueHandler('"');
+ assertTrue(handler.matchToEnd(new Line(), new StringBuilder("toto = \"lklj\"")));
+ assertFalse(handler.matchToEnd(new Line(), new StringBuilder("\\\"")));
+ assertTrue(handler.matchToEnd(new Line(), new StringBuilder("\\\\\"")));
+ assertFalse(handler.matchToEnd(new Line(), new StringBuilder("\\\\\\\"")));
+ assertTrue(handler.matchToEnd(new Line(), new StringBuilder("\\\\\\\\\"")));
+ assertFalse(handler.matchToEnd(new Line(), new StringBuilder("toto = \'")));
+ }
+
+ @Test
+ public void matchToEndOfLine() {
+ LiteralValueHandler handler = new LiteralValueHandler('"');
+ assertTrue(handler.matchWithEndOfLine(new Line(), new StringBuilder()));
+ }
+
+}