I have two static methods in the class BrickSortParallel. They are fully covered by unit tests. But I have a static block static {...} listed with only 75% code coverage by Jacoco. What does that signify?

public static int computeOddTaskCount(int length) {
if (length < 0) throw new IllegalArgumentException("Illegal argument value: " + length);
return isOdd(length) ? length >> 1 : abs(length - 1) >> 1;
}
public static int computeEvenTaskCount(int length) {
if (length < 0) throw new IllegalArgumentException("Illegal argument value: " + length);
return length >> 1;
}
Following are test cases to ensure full code coverage for above methods:
class ComputeTaskCountTest {
private static final String ZERO_TASKS_EXPECTED = "Zero tasks expected.";
private static final String ONE_TASK_EXPECTED = "One task expected.";
private static final String HALF_TASKS_EXPECTED = "Half tasks expected.";
private static final String ILLEGAL_LENGTH_EXPECTED = "Illegal length expected.";
@Test
@DisplayName("BrickSortParallelTest.ComputeTaskCountTest.testZeroLength")
void testZeroLength() {
assertEquals(0, computeOddTaskCount(0), ZERO_TASKS_EXPECTED);
assertEquals(0, computeEvenTaskCount(0), ZERO_TASKS_EXPECTED);
}
@Test
@DisplayName("BrickSortParallelTest.ComputeTaskCountTest.testMinusOneLength")
void testMinusOneLength() {
assertThrows(
IllegalArgumentException.class, () -> computeOddTaskCount(-1), ILLEGAL_LENGTH_EXPECTED);
assertThrows(
IllegalArgumentException.class, () -> computeEvenTaskCount(-1), ILLEGAL_LENGTH_EXPECTED);
}
@Test
@DisplayName("BrickSortParallelTest.ComputeTaskCountTest.testMinusTwoLength")
void testMinusTwoLength() {
assertThrows(
IllegalArgumentException.class, () -> computeOddTaskCount(-2), ILLEGAL_LENGTH_EXPECTED);
assertThrows(
IllegalArgumentException.class, () -> computeEvenTaskCount(-2), ILLEGAL_LENGTH_EXPECTED);
}
@Test
@DisplayName("BrickSortParallelTest.ComputeTaskCountTest.testMinValueLength")
void testMinValueLength() {
assertThrows(
IllegalArgumentException.class,
() -> computeOddTaskCount(Integer.MIN_VALUE),
ILLEGAL_LENGTH_EXPECTED);
assertThrows(
IllegalArgumentException.class,
() -> computeEvenTaskCount(Integer.MIN_VALUE),
ILLEGAL_LENGTH_EXPECTED);
}
@Test
@DisplayName("BrickSortParallelTest.ComputeTaskCountTest.testOneValueLength")
void testOneValueLength() {
assertEquals(0, computeOddTaskCount(1), ZERO_TASKS_EXPECTED);
assertEquals(0, computeEvenTaskCount(1), ZERO_TASKS_EXPECTED);
}
@Test
@DisplayName("BrickSortParallelTest.ComputeTaskCountTest.testTwoValueLength")
void testTwoValueLength() {
assertEquals(0, computeOddTaskCount(2), ZERO_TASKS_EXPECTED);
assertEquals(1, computeEvenTaskCount(2), ONE_TASK_EXPECTED);
}
@Test
@DisplayName("BrickSortParallelTest.ComputeTaskCountTest.testThreeValueLength")
void testThreeValueLength() {
assertEquals(1, computeOddTaskCount(3), ONE_TASK_EXPECTED);
assertEquals(1, computeEvenTaskCount(3), ONE_TASK_EXPECTED);
}
@Test
@DisplayName("BrickSortParallelTest.ComputeTaskCountTest.testFourValueLength")
void testFourValueLength() {
assertEquals(1, computeOddTaskCount(4), ONE_TASK_EXPECTED);
assertEquals(2, computeEvenTaskCount(4), "Two tasks expected");
}
@Test
@DisplayName("BrickSortParallelTest.ComputeTaskCountTest.testMaxValueLength")
void testMaxValueLength() {
assertEquals(
Integer.MAX_VALUE / 2, computeOddTaskCount(Integer.MAX_VALUE), HALF_TASKS_EXPECTED);
assertEquals(
Integer.MAX_VALUE / 2, computeEvenTaskCount(Integer.MAX_VALUE), HALF_TASKS_EXPECTED);
}
@Test
@DisplayName("BrickSortParallelTest.ComputeTaskCountTest.testMaxValueLengthEven")
void testMaxValueLengthEven() {
assertEquals(
(Integer.MAX_VALUE - 2) / 2,
computeOddTaskCount(Integer.MAX_VALUE - 1),
HALF_TASKS_EXPECTED);
assertEquals(
(Integer.MAX_VALUE - 1) / 2,
computeEvenTaskCount(Integer.MAX_VALUE - 1),
HALF_TASKS_EXPECTED);
}
}
Am I missing anything in the above test class?
The full classes are available at:
https://raw.githubusercontent.com/linusjf/DSAlgos/master/src/main/java/ds/BrickSortParallel.java
$ java --version
openjdk 11.0.8 2020-07-14
OpenJDK Runtime Environment (build 11.0.8+10)
OpenJDK 64-Bit Server VM (build 11.0.8+10, mixed mode)
Jacoco version: 0.85
From the report, the static block has a cyclomatic complexity of 2 and with only one branch covered, that implies there's a test case missing to cover that eventuality.
mvn cleanto clear out your project output directory and rerunning your tests?