We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ee47aa commit 1fbc68fCopy full SHA for 1fbc68f
1 file changed
src/test/java/io/github/classgraph/features/EnumTest.java
@@ -17,14 +17,9 @@ private static enum MyEnum {
17
A, B, C;
18
}
19
20
- /**
21
- * Test records (JDK 14+).
22
- *
23
- * @throws Exception
24
- * the exception
25
- */
+ /** Test */
26
@Test
27
- public void recordJar() throws Exception {
+ public void enumConsts() throws Exception {
28
try (ScanResult scanResult = new ClassGraph().acceptClasses(MyEnum.class.getName()).enableAllInfo()
29
.scan()) {
30
assertThat(scanResult.getAllEnums().size() == 1);
0 commit comments