< prev index next >

test/serviceability/jvmti/GetModulesInfo/JvmtiGetAllModulesTest.java

Print this page




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test
  26  * @summary Verifies the JVMTI GetAllModules API
  27  * @library /test/lib
  28  * @run main/othervm -agentlib:JvmtiGetAllModulesTest JvmtiGetAllModulesTest
  29  *
  30  */
  31 import java.lang.module.ModuleReference;
  32 import java.lang.module.ModuleFinder;
  33 import java.lang.module.ModuleReader;
  34 import java.lang.module.ModuleDescriptor;
  35 import java.lang.module.Configuration;
  36 import java.util.Arrays;
  37 import java.util.Set;
  38 import java.util.Map;
  39 import java.util.function.Supplier;
  40 import java.util.Objects;
  41 import java.util.Optional;
  42 import java.net.URI;
  43 import java.util.HashSet;
  44 import java.util.HashMap;
  45 import java.util.stream.Collectors;
  46 import jdk.test.lib.Asserts;
  47 
  48 public class JvmtiGetAllModulesTest {




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test
  26  * @summary Verifies the JVMTI GetAllModules API
  27  * @library /test/lib
  28  * @run main/othervm/native -agentlib:JvmtiGetAllModulesTest JvmtiGetAllModulesTest
  29  *
  30  */
  31 import java.lang.module.ModuleReference;
  32 import java.lang.module.ModuleFinder;
  33 import java.lang.module.ModuleReader;
  34 import java.lang.module.ModuleDescriptor;
  35 import java.lang.module.Configuration;
  36 import java.util.Arrays;
  37 import java.util.Set;
  38 import java.util.Map;
  39 import java.util.function.Supplier;
  40 import java.util.Objects;
  41 import java.util.Optional;
  42 import java.net.URI;
  43 import java.util.HashSet;
  44 import java.util.HashMap;
  45 import java.util.stream.Collectors;
  46 import jdk.test.lib.Asserts;
  47 
  48 public class JvmtiGetAllModulesTest {


< prev index next >