< prev index next >

test/java/math/BigDecimal/StringConstructor.java

Print this page




   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 ..
  27  * @bug 4103117 4331084 4488017 4490929 6255285 6268365 8074460
  28  * @summary Tests the BigDecimal string constructor (use -Dseed=X to set PRNG seed).

  29  */
  30 
  31 import java.math.*;
  32 
  33 public class StringConstructor {
  34 
  35     private static RandomSeed rndSeed = new RandomSeed(false);
  36 
  37     public static void main(String[] args) throws Exception {
  38         System.out.println("Random number generator seed = " + rndSeed.getSeed());
  39 
  40         constructWithError("");
  41         constructWithError("+");
  42         constructWithError("-");
  43         constructWithError("+e");
  44         constructWithError("-e");
  45         constructWithError("e+");
  46         constructWithError("1.-0");
  47         constructWithError(".-123");
  48         constructWithError("-");




   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 ..
  27  * @bug 4103117 4331084 4488017 4490929 6255285 6268365 8074460
  28  * @summary Tests the BigDecimal string constructor (use -Dseed=X to set PRNG seed).
  29  * @key randomness
  30  */
  31 
  32 import java.math.*;
  33 
  34 public class StringConstructor {
  35 
  36     private static RandomSeed rndSeed = new RandomSeed(false);
  37 
  38     public static void main(String[] args) throws Exception {
  39         System.out.println("Random number generator seed = " + rndSeed.getSeed());
  40 
  41         constructWithError("");
  42         constructWithError("+");
  43         constructWithError("-");
  44         constructWithError("+e");
  45         constructWithError("-e");
  46         constructWithError("e+");
  47         constructWithError("1.-0");
  48         constructWithError(".-123");
  49         constructWithError("-");


< prev index next >