TestCase.java revision 9111:a41fe5ffa839
1/*
2 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
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
25package compiler.jvmci.common.testcases;
26
27import java.lang.reflect.Executable;
28import java.lang.reflect.Method;
29import java.lang.reflect.Modifier;
30import java.util.Arrays;
31import java.util.Collection;
32import java.util.HashSet;
33import java.util.List;
34import java.util.ArrayList;
35import java.util.Set;
36
37/**
38 * A test case for tests in compiler.jvmci.compilerToVM package.
39 */
40public class TestCase {
41    private static final Class<?>[] CLASSES = {
42            AbstractClass.class,
43            AbstractClassExtender.class,
44            AnotherSingleImplementer.class,
45            AnotherSingleImplementerInterface.class,
46            DoNotExtendClass.class,
47            DoNotImplementInterface.class,
48            MultipleAbstractImplementer.class,
49            MultipleImplementer1.class,
50            MultipleImplementer2.class,
51            MultipleImplementersInterface.class,
52            MultipleImplementersInterfaceExtender.class,
53            MultiSubclassedClass.class,
54            MultiSubclassedClassSubclass1.class,
55            MultiSubclassedClassSubclass2.class,
56            PackagePrivateClass.class,
57            SimpleClass.class,
58            SingleImplementer.class,
59            SingleImplementerInterface.class,
60            SingleSubclass.class,
61            SingleSubclassedClass.class
62    };
63
64    public static Collection<Class<?>> getAllClasses() {
65        return  Arrays.asList(CLASSES);
66    }
67
68    public static Collection<Executable> getAllExecutables() {
69        Set<Executable> result = new HashSet<>();
70        for (Class<?> aClass : CLASSES) {
71            result.addAll(Arrays.asList(aClass.getMethods()));
72            result.addAll(Arrays.asList(aClass.getConstructors()));
73        }
74        return result;
75    }
76}
77