< prev index next >

test/jdk/java/lang/module/ClassFileVersionsTest.java

Print this page

        

@@ -54,10 +54,11 @@
                 { 53,   0,  Set.of(STATIC, TRANSITIVE) },
 
                 { 54,   0,  Set.of() },                      // JDK 10
                 { 55,   0,  Set.of() },                      // JDK 11
                 { 56,   0,  Set.of() },                      // JDK 12
+                { 57,   0,  Set.of() },                      // JDK 13
         };
     }
 
     // major, minor, modifiers for requires java.base
     @DataProvider(name = "unsupported")

@@ -77,11 +78,15 @@
 
                 { 56,   0,  Set.of(STATIC) },                // JDK 12
                 { 56,   0,  Set.of(TRANSITIVE) },
                 { 56,   0,  Set.of(STATIC, TRANSITIVE) },
 
-                { 57,   0,  Set.of()},                       // JDK 13
+                { 57,   0,  Set.of(STATIC) },                // JDK 13
+                { 57,   0,  Set.of(TRANSITIVE) },
+                { 57,   0,  Set.of(STATIC, TRANSITIVE) },
+
+                { 58,   0,  Set.of()},                       // JDK 14
         };
     }
 
     @Test(dataProvider = "supported")
     public void testSupported(int major, int minor, Set<Modifier> ms) {
< prev index next >