CallerSensitiveTest.java revision 1551:f3b883bec2d0
180708Sjake/*
282895Sjake * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
380708Sjake * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
480708Sjake *
580708Sjake * This code is free software; you can redistribute it and/or modify it
680708Sjake * under the terms of the GNU General Public License version 2 only, as
780708Sjake * published by the Free Software Foundation.  Oracle designates this
880708Sjake * particular file as subject to the "Classpath" exception as provided
980708Sjake * by Oracle in the LICENSE file that accompanied this code.
1080708Sjake *
1180708Sjake * This code is distributed in the hope that it will be useful, but WITHOUT
1280708Sjake * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1380708Sjake * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1480708Sjake * version 2 for more details (a copy is included in the LICENSE file that
1581334Sobrien * accompanied this code).
1680708Sjake *
1780708Sjake * You should have received a copy of the GNU General Public License version
1881334Sobrien * 2 along with this work; if not, write to the Free Software Foundation,
1980708Sjake * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2080708Sjake *
2180708Sjake * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2280708Sjake * or visit www.oracle.com if you need additional information or have any
2380708Sjake * questions.
2480708Sjake */
2580708Sjake
2680708Sjakepackage jdk.dynalink.beans.test;
2782895Sjake
2880708Sjakeimport jdk.dynalink.beans.BeansLinker;
2980708Sjakeimport jdk.nashorn.test.models.ClassLoaderAware;
3080708Sjakeimport org.testng.annotations.Test;
3180709Sjake
3280709Sjake@SuppressWarnings("javadoc")
3380709Sjakepublic class CallerSensitiveTest {
3480709Sjake    @Test
3580709Sjake    public void testCallerSensitive() {
36225890Smarius        BeansLinker.getLinkerForClass(ClassLoaderAware.class);
37225890Smarius    }
38225890Smarius}
39225890Smarius