We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d71d013 commit a4f6b39Copy full SHA for a4f6b39
src/test/java/com/ldiamond/sqgraph/ArchitectureUnitTests.java
@@ -31,6 +31,9 @@ public class ArchitectureUnitTests {
31
@ArchTest
32
static final ArchRule no_treeset = noClasses().should().callConstructor(java.util.TreeSet.class).because("Use ConcurrentSkipListSet");
33
34
+ @ArchTest
35
+ static final ArchRule no_threadgroup = noClasses().should().callConstructor(java.lang.ThreadGroup.class).because("Use ExecutorService");
36
+
37
38
static final ArchRule no_treemap = noClasses().should().callConstructor(java.util.TreeMap.class).because("Use ConcurrentSkipListMap");
39
0 commit comments