< prev index next >

test/jdk/java/lang/reflect/Proxy/ProxyClassAccessTest.java

Print this page
rev 51638 : [mq]: 8210112


  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 import java.lang.module.Configuration;
  25 import java.lang.module.ModuleFinder;
  26 import java.lang.reflect.Proxy;
  27 import java.nio.file.Path;
  28 import java.nio.file.Paths;
  29 import java.util.Arrays;
  30 import java.util.List;
  31 
  32 import jdk.test.lib.compiler.CompilerUtils;
  33 import static jdk.testlibrary.ProcessTools.executeTestJava;
  34 
  35 import org.testng.annotations.BeforeTest;
  36 import org.testng.annotations.Test;
  37 import static org.testng.Assert.*;
  38 
  39 /**
  40  * @test
  41  * @library /lib/testlibrary /test/lib
  42  * @modules jdk.compiler
  43  * @build ProxyClassAccessTest q.NP jdk.testlibrary.*
  44  *        jdk.test.lib.compiler.CompilerUtils
  45  * @run testng ProxyClassAccessTest
  46  * @summary Driver for testing proxy class doesn't have access to
  47  *          types referenced by proxy interfaces
  48  */
  49 
  50 public class ProxyClassAccessTest {
  51 
  52     private static final String TEST_SRC = System.getProperty("test.src");
  53     private static final String TEST_CLASSES = System.getProperty("test.classes");
  54 
  55     private static final Path SRC_DIR = Paths.get(TEST_SRC, "src");
  56     private static final Path MODS_DIR = Paths.get("mods");
  57 
  58     // the names of the modules in this test
  59     private static List<String> modules = Arrays.asList("m1", "m2", "m3", "test");
  60 
  61     /**
  62      * Compiles all modules used by the test
  63      */




  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 import java.lang.module.Configuration;
  25 import java.lang.module.ModuleFinder;
  26 import java.lang.reflect.Proxy;
  27 import java.nio.file.Path;
  28 import java.nio.file.Paths;
  29 import java.util.Arrays;
  30 import java.util.List;
  31 
  32 import jdk.test.lib.compiler.CompilerUtils;
  33 import static jdk.test.lib.process.ProcessTools.executeTestJava;
  34 
  35 import org.testng.annotations.BeforeTest;
  36 import org.testng.annotations.Test;
  37 import static org.testng.Assert.*;
  38 
  39 /**
  40  * @test
  41  * @library /test/lib
  42  * @modules jdk.compiler
  43  * @build ProxyClassAccessTest q.NP
  44  *        jdk.test.lib.compiler.CompilerUtils
  45  * @run testng ProxyClassAccessTest
  46  * @summary Driver for testing proxy class doesn't have access to
  47  *          types referenced by proxy interfaces
  48  */
  49 
  50 public class ProxyClassAccessTest {
  51 
  52     private static final String TEST_SRC = System.getProperty("test.src");
  53     private static final String TEST_CLASSES = System.getProperty("test.classes");
  54 
  55     private static final Path SRC_DIR = Paths.get(TEST_SRC, "src");
  56     private static final Path MODS_DIR = Paths.get("mods");
  57 
  58     // the names of the modules in this test
  59     private static List<String> modules = Arrays.asList("m1", "m2", "m3", "test");
  60 
  61     /**
  62      * Compiles all modules used by the test
  63      */


< prev index next >