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 tolerance of Swagger
12 * annotations (no {@code RuleSetReferenceId} warnings must be
13 * produced).
14 * @since 0.25.1
15 */
16 final class PmdSwaggerAnnotationsTest {
17
18 @Test
19 void allowsSwaggerAnnotations() throws Exception {
20 new PmdAssert(
21 "SwaggerApi.java",
22 Matchers.is(true),
23 Matchers.not(
24 Matchers.containsString("RuleSetReferenceId")
25 )
26 ).assertOk();
27 }
28 }