jdk/test/sun/management/StackTraceElementCompositeData/CompatibilityTest.java
changeset 44423 306c020eb154
parent 36511 9d0388c6b336
equal deleted inserted replaced
44422:14ab3266fe62 44423:306c020eb154
    13 
    13 
    14 /*
    14 /*
    15  * @test
    15  * @test
    16  * @bug     8139587
    16  * @bug     8139587
    17  * @summary Check backward compatibility of StackTraceElementCompositeData
    17  * @summary Check backward compatibility of StackTraceElementCompositeData
    18  * @modules java.management/sun.management
    18  * @author  Jaroslav Bachorik
       
    19  *
    19  * @run testng CompatibilityTest
    20  * @run testng CompatibilityTest
    20  * @author  Jaroslav Bachorik
       
    21  */
    21  */
    22 
    22 
    23 public class CompatibilityTest {
    23 public class CompatibilityTest {
    24     private static CompositeType compositeTypeV6;
    24     private static CompositeType compositeTypeV6;
    25     private static Map<String, Object> itemsV6;
    25     private static Map<String, Object> itemsV6;
    68 
    68 
    69         assertNull(ste.getModuleName());
    69         assertNull(ste.getModuleName());
    70         assertNull(ste.getModuleVersion());
    70         assertNull(ste.getModuleVersion());
    71     }
    71     }
    72 }
    72 }
       
    73