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 * @bug 8255560
27 * @summary Class::isRecord should check that the current class is final and not abstract
28 * @library /test/lib
29 * @run testng/othervm IsRecordTest
30 */
31
32 import java.lang.classfile.ClassFile;
33 import java.lang.constant.ClassDesc;
34 import java.lang.reflect.AccessFlag;
35 import java.util.List;
36 import java.util.Map;
37
38 import java.lang.classfile.attribute.RecordAttribute;
39 import java.lang.classfile.attribute.RecordComponentInfo;
40 import jdk.test.lib.ByteCodeLoader;
41 import org.testng.annotations.DataProvider;
42 import org.testng.annotations.Test;
43 import static java.lang.System.out;
44 import static java.lang.classfile.ClassFile.ACC_ABSTRACT;
45 import static java.lang.classfile.ClassFile.ACC_FINAL;
46 import static java.lang.constant.ConstantDescs.CD_int;
47 import static org.testng.Assert.assertEquals;
48 import static org.testng.Assert.assertFalse;
49 import static org.testng.Assert.assertTrue;
|
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 * @bug 8255560 8326879
27 * @summary Class::isRecord should check that the current class is final and not abstract
28 * @library /test/lib
29 * @run testng/othervm IsRecordTest
30 * @run testng/othervm --enable-preview IsRecordTest
31 */
32
33 import java.lang.classfile.ClassFile;
34 import java.lang.constant.ClassDesc;
35 import java.lang.reflect.AccessFlag;
36 import java.util.List;
37 import java.util.Map;
38
39 import java.lang.classfile.attribute.RecordAttribute;
40 import java.lang.classfile.attribute.RecordComponentInfo;
41 import jdk.test.lib.ByteCodeLoader;
42 import org.testng.annotations.DataProvider;
43 import org.testng.annotations.Test;
44 import static java.lang.System.out;
45 import static java.lang.classfile.ClassFile.ACC_ABSTRACT;
46 import static java.lang.classfile.ClassFile.ACC_FINAL;
47 import static java.lang.constant.ConstantDescs.CD_int;
48 import static org.testng.Assert.assertEquals;
49 import static org.testng.Assert.assertFalse;
50 import static org.testng.Assert.assertTrue;
|