Skip to content

Commit

Permalink
chore: Fix PMD errorprone rules - TestClassWithoutTestCases
Browse files Browse the repository at this point in the history
  • Loading branch information
melbeltagy committed Oct 4, 2024
1 parent 71ef7f6 commit 27856dc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
import static org.junit.jupiter.api.Assertions.assertNull;

@Component
@SuppressWarnings("PMD.TestClassWithoutTestCases")
public class TestUtil {

@Autowired
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@

@Configuration
@Slf4j
@SuppressWarnings("PMD.TestClassWithoutTestCases")
public class TestingConfiguration {

@Bean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
import java.util.stream.StreamSupport;

@Component
@SuppressWarnings("PMD.TestClassWithoutTestCases")
public final class TestUtil {

@Autowired
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
import java.util.stream.StreamSupport;

@Component
@SuppressWarnings("PMD.TestClassWithoutTestCases")
public class TestUtil {

@Autowired
Expand Down

0 comments on commit 27856dc

Please sign in to comment.