< prev index next >

test/valhalla/mvt/MVTReflectionTest.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 basic test for reflection on MVT
  27  * @build Point
  28  * @run testng/othervm -Xint -Xverify:none -XX:+EnableMVT MVTReflectionTest
  29  */
  30 
  31 import jdk.experimental.value.ValueType;
  32 
  33 import org.testng.annotations.Test;
  34 import static org.testng.Assert.*;
  35 
  36 @Test
  37 public class MVTReflectionTest {
  38     private static Class<?> VCC = Point.class;
  39     private static ValueType<?> VT = ValueType.forClass(VCC);
  40     private static Class<?> DVT = VT.valueClass();
  41 
  42     public void testValueCapableClass() throws Exception {
  43         Class<?> pointClass = Class.forName("Point");
  44         assertEquals(pointClass, VCC);
  45 
  46         // test getSuperClass
  47         assertEquals(pointClass.getSuperclass(), Object.class);
  48 




   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 basic test for reflection on MVT
  27  * @build Point
  28  * @run testng/othervm -Xverify:none -XX:+EnableMVT MVTReflectionTest
  29  */
  30 
  31 import jdk.experimental.value.ValueType;
  32 
  33 import org.testng.annotations.Test;
  34 import static org.testng.Assert.*;
  35 
  36 @Test
  37 public class MVTReflectionTest {
  38     private static Class<?> VCC = Point.class;
  39     private static ValueType<?> VT = ValueType.forClass(VCC);
  40     private static Class<?> DVT = VT.valueClass();
  41 
  42     public void testValueCapableClass() throws Exception {
  43         Class<?> pointClass = Class.forName("Point");
  44         assertEquals(pointClass, VCC);
  45 
  46         // test getSuperClass
  47         assertEquals(pointClass.getSuperclass(), Object.class);
  48 


< prev index next >