aboutsummaryrefslogtreecommitdiff
path: root/org.jacoco.core.test.validation.java7/src/org/jacoco/core/test/validation/java7/StringSwitchTest.java
blob: 778097e0e32b0244f1edcbaa70d80b973b4bb237 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
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);
	}

}