< prev index next >

jdk/test/valhalla/mvt/MVTReflectionTest.java

Print this page




   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  * @summary basic test for reflection on MVT
  27  * @build Point
  28  * @run testng/othervm -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 
  49         // test getFields and getDeclaredFields
  50         assertTrue(pointClass.getFields().length == 3);
  51         assertTrue(pointClass.getDeclaredFields().length == 3);




   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  * @summary basic test for reflection on MVT

  27  * @run testng/othervm -XX:+EnableMVT MVTReflectionTest
  28  */
  29 
  30 import jdk.incubator.mvt.ValueType;
  31 
  32 import org.testng.annotations.Test;
  33 import static org.testng.Assert.*;
  34 
  35 @Test
  36 public class MVTReflectionTest {
  37     private static Class<?> VCC = Point.class;
  38     private static ValueType<?> VT = ValueType.forClass(VCC);
  39     private static Class<?> DVT = VT.valueClass();
  40 
  41     public void testValueCapableClass() throws Exception {
  42         Class<?> pointClass = Class.forName("Point");
  43         assertEquals(pointClass, VCC);
  44 
  45         // test getSuperClass
  46         assertEquals(pointClass.getSuperclass(), Object.class);
  47 
  48         // test getFields and getDeclaredFields
  49         assertTrue(pointClass.getFields().length == 3);
  50         assertTrue(pointClass.getDeclaredFields().length == 3);


< prev index next >