aboutsummaryrefslogtreecommitdiff
path: root/org.jacoco.core.test.validation.java7/src/org/jacoco/core/test/validation/java7/StringSwitchTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'org.jacoco.core.test.validation.java7/src/org/jacoco/core/test/validation/java7/StringSwitchTest.java')
-rw-r--r--org.jacoco.core.test.validation.java7/src/org/jacoco/core/test/validation/java7/StringSwitchTest.java66
1 files changed, 66 insertions, 0 deletions
diff --git a/org.jacoco.core.test.validation.java7/src/org/jacoco/core/test/validation/java7/StringSwitchTest.java b/org.jacoco.core.test.validation.java7/src/org/jacoco/core/test/validation/java7/StringSwitchTest.java
new file mode 100644
index 00000000..778097e0
--- /dev/null
+++ b/org.jacoco.core.test.validation.java7/src/org/jacoco/core/test/validation/java7/StringSwitchTest.java
@@ -0,0 +1,66 @@
+/*******************************************************************************
+ * Copyright (c) 2009, 2018 Mountainminds GmbH & Co. KG and Contributors
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Evgeny Mandrikov - initial API and implementation
+ *
+ *******************************************************************************/
+package org.jacoco.core.test.validation.java7;
+
+import org.jacoco.core.analysis.ICounter;
+import org.jacoco.core.test.validation.ValidationTestBase;
+import org.jacoco.core.test.validation.java7.targets.StringSwitchTarget;
+import org.junit.Test;
+
+/**
+ * Test of filtering of a bytecode that is generated for a String in switch
+ * statement.
+ */
+public class StringSwitchTest extends ValidationTestBase {
+
+ public StringSwitchTest() {
+ super(StringSwitchTarget.class);
+ }
+
+ /**
+ * {@link StringSwitchTarget#covered(String)}
+ */
+ @Test
+ public void covered() {
+ if (isJDKCompiler) {
+ assertLine("covered.switch", ICounter.FULLY_COVERED, 0, 4);
+ } else {
+ assertLine("covered.switch", ICounter.PARTLY_COVERED, 2, 7);
+ }
+ assertLine("covered.case1", ICounter.FULLY_COVERED, 0, 0);
+ assertLine("covered.case2", ICounter.FULLY_COVERED, 0, 0);
+ assertLine("covered.case3", ICounter.FULLY_COVERED, 0, 0);
+ assertLine("covered.default", ICounter.FULLY_COVERED, 0, 0);
+ }
+
+ /**
+ * {@link StringSwitchTarget#notCovered(String)}
+ */
+ @Test
+ public void notCovered() {
+ assertLine("notCovered", ICounter.NOT_COVERED, isJDKCompiler ? 4 : 9,
+ 0);
+ }
+
+ /**
+ * {@link StringSwitchTarget#handwritten(String)}
+ */
+ @Test
+ public void handwritten() {
+ assertLine("handwritten.firstSwitch", ICounter.FULLY_COVERED, 2, 1);
+ assertLine("handwritten.ignored", ICounter.FULLY_COVERED);
+ assertLine("handwritten.secondSwitch", ICounter.FULLY_COVERED, 3, 1);
+ assertLine("handwritten.case1", ICounter.FULLY_COVERED);
+ assertLine("handwritten.case2", ICounter.NOT_COVERED);
+ }
+
+}