< prev index next >

test/jdk/java/lang/invoke/common/test/java/lang/invoke/lib/Helper.java

Print this page
rev 51789 : [mq]: asserts


   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 package test.java.lang.invoke.lib;
  25 
  26 import jdk.testlibrary.Asserts;
  27 
  28 import java.lang.invoke.MethodHandle;
  29 import java.lang.invoke.MethodHandles;
  30 import java.lang.invoke.MethodType;
  31 import java.lang.reflect.Array;
  32 import java.util.ArrayList;
  33 import java.util.Arrays;
  34 import java.util.List;
  35 import java.util.Random;
  36 
  37 public class Helper {
  38     /** Flag for verbose output, true if {@code -Dverbose} specified */
  39     public static final boolean IS_VERBOSE
  40             = System.getProperty("verbose") != null;
  41     /**
  42      * Flag for thorough testing -- all test will be executed,
  43      * true if {@code -Dthorough} specified. */
  44     public static final boolean IS_THOROUGH
  45             = System.getProperty("thorough") != null;
  46     /** Random number generator w/ initial seed equal to {@code -Dseed} */




   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 package test.java.lang.invoke.lib;
  25 
  26 import jdk.test.lib.Asserts;
  27 
  28 import java.lang.invoke.MethodHandle;
  29 import java.lang.invoke.MethodHandles;
  30 import java.lang.invoke.MethodType;
  31 import java.lang.reflect.Array;
  32 import java.util.ArrayList;
  33 import java.util.Arrays;
  34 import java.util.List;
  35 import java.util.Random;
  36 
  37 public class Helper {
  38     /** Flag for verbose output, true if {@code -Dverbose} specified */
  39     public static final boolean IS_VERBOSE
  40             = System.getProperty("verbose") != null;
  41     /**
  42      * Flag for thorough testing -- all test will be executed,
  43      * true if {@code -Dthorough} specified. */
  44     public static final boolean IS_THOROUGH
  45             = System.getProperty("thorough") != null;
  46     /** Random number generator w/ initial seed equal to {@code -Dseed} */


< prev index next >