Skip to content

Commit

Permalink
supplemental: Output should be silent for Issue checkstyle#10844
Browse files Browse the repository at this point in the history
  • Loading branch information
amarlearning authored and romani committed Oct 9, 2021
1 parent 6396021 commit 287badf
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

import static com.tngtech.archunit.lang.syntax.ArchRuleDefinition.methods;

import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;

import com.tngtech.archunit.core.domain.JavaClasses;
Expand All @@ -30,6 +31,13 @@
import com.tngtech.archunit.lang.ArchRule;

public class ArchUnitTest {

@BeforeAll
public static void init() {
System.setProperty(
"org.slf4j.simpleLogger.log.com.tngtech.archunit.core.PluginLoader", "off");
}

/**
* The goal is to ensure all classes of a specific name pattern have non-protected methods,
* except for those which are annotated with {@code Override}. In the bytecode there is no
Expand Down

0 comments on commit 287badf

Please sign in to comment.