< prev index next >

test/java/lang/reflect/Module/AddExportsTest.java

Print this page




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   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  * @run main/othervm -XaddExports:java.desktop/sun.awt=java.base AddExportsTest
  27  * @run main/othervm -XaddExports:java.desktop/sun.awt=ALL-UNNAMED AddExportsTest
  28  * @summary Test Module isExported methods with exports changed by -AddExportsTest
  29  */
  30 
  31 import java.lang.reflect.Layer;
  32 import java.lang.reflect.Module;
  33 import java.util.Optional;
  34 
  35 public class AddExportsTest {
  36 
  37     public static void main(String[] args) {
  38 
  39         String addExports = System.getProperty("jdk.launcher.addexports.0");
  40         assertTrue(addExports != null, "Expected to be run with -XaddExports");
  41 
  42         Layer bootLayer = Layer.boot();
  43 
  44         Module unnamedModule = AddExportsTest.class.getModule();
  45         assertFalse(unnamedModule.isNamed());




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   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  * @modules java.desktop
  27  * @run main/othervm -XaddExports:java.desktop/sun.awt=java.base AddExportsTest
  28  * @run main/othervm -XaddExports:java.desktop/sun.awt=ALL-UNNAMED AddExportsTest
  29  * @summary Test Module isExported methods with exports changed by -AddExportsTest
  30  */
  31 
  32 import java.lang.reflect.Layer;
  33 import java.lang.reflect.Module;
  34 import java.util.Optional;
  35 
  36 public class AddExportsTest {
  37 
  38     public static void main(String[] args) {
  39 
  40         String addExports = System.getProperty("jdk.launcher.addexports.0");
  41         assertTrue(addExports != null, "Expected to be run with -XaddExports");
  42 
  43         Layer bootLayer = Layer.boot();
  44 
  45         Module unnamedModule = AddExportsTest.class.getModule();
  46         assertFalse(unnamedModule.isNamed());


< prev index next >