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 the
12   * {@code io.github.artsok.RepeatedIfExceptionsTest} annotation
13   * as a test method, so the class is not flagged under
14   * {@code TestClassWithoutTestCases}.
15   * @since 0.25.1
16   */
17  final class PmdTestClassWithoutTestCasesTest {
18  
19      @Test
20      void recognisesArtsokRepeatedIfExceptionsTest() throws Exception {
21          new PmdAssert(
22              "RepeatedIfExceptionsTest.java",
23              Matchers.any(Boolean.class),
24              Matchers.not(
25                  Matchers.containsString("TestClassWithoutTestCases")
26              )
27          ).assertOk();
28      }
29  }