< prev index next >

test/java/math/BigDecimal/StringConstructor.java

Print this page
rev 17324 : 8181759: add explicit @build actions for jdk.test.lib classes in all :tier1 tests
Reviewed-by: duke


   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  * @library /test/lib

  27  * @run main StringConstructor
  28  * @bug 4103117 4331084 4488017 4490929 6255285 6268365 8074460 8078672
  29  * @summary Tests the BigDecimal string constructor (use -Dseed=X to set PRNG seed).
  30  * @key randomness
  31  */
  32 
  33 import java.math.*;
  34 import java.util.Random;
  35 import jdk.test.lib.RandomFactory;
  36 
  37 public class StringConstructor {
  38 
  39     public static void main(String[] args) throws Exception {
  40         constructWithError("");
  41         constructWithError("+");
  42         constructWithError("-");
  43         constructWithError("+e");
  44         constructWithError("-e");
  45         constructWithError("e+");
  46         constructWithError("1.-0");




   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  * @library /test/lib
  27  * @build jdk.test.lib.RandomFactory
  28  * @run main StringConstructor
  29  * @bug 4103117 4331084 4488017 4490929 6255285 6268365 8074460 8078672
  30  * @summary Tests the BigDecimal string constructor (use -Dseed=X to set PRNG seed).
  31  * @key randomness
  32  */
  33 
  34 import java.math.*;
  35 import java.util.Random;
  36 import jdk.test.lib.RandomFactory;
  37 
  38 public class StringConstructor {
  39 
  40     public static void main(String[] args) throws Exception {
  41         constructWithError("");
  42         constructWithError("+");
  43         constructWithError("-");
  44         constructWithError("+e");
  45         constructWithError("-e");
  46         constructWithError("e+");
  47         constructWithError("1.-0");


< prev index next >