View Javadoc
1   /*
2    * SPDX-FileCopyrightText: Copyright (c) 2011-2026 Yegor Bugayenko
3    * SPDX-License-Identifier: MIT
4    */
5   package com.qulice.pmd;
6   
7   import org.hamcrest.Matchers;
8   import org.junit.jupiter.api.Test;
9   
10  /**
11   * Test case for {@link PmdValidator}'s recognition of method
12   * references so that referenced private methods are not flagged
13   * as {@code UnusedPrivateMethod}.
14   * @since 0.25.1
15   */
16  final class PmdMethodReferencesTest {
17  
18      @Test
19      void understandsMethodReferences() throws Exception {
20          new PmdAssert(
21              "UnderstandsMethodReferences.java",
22              Matchers.is(true),
23              Matchers.not(
24                  Matchers.containsString("(UnusedPrivateMethod)")
25              )
26          ).assertOk();
27      }
28  }