File: valueOfDouble.java

package info (click to toggle)
mauve 20161030-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 44,628 kB
  • ctags: 35,425
  • sloc: java: 336,555; sh: 2,834; xml: 208; makefile: 72
file content (87 lines) | stat: -rw-r--r-- 2,802 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// Test of Double method valueOf(double).

// Copyright 2012 Red Hat, Inc.
// Written by Pavel Tisnovsky <ptisnovs@redhat.com>

// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published 
// by the Free Software Foundation, either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software Foundation
// Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307 USA

// Tags: JDK1.4
// Tags: CompileOptions: -source 1.4 -target 1.4

package gnu.testlet.java.lang.Double;

import gnu.testlet.TestHarness;
import gnu.testlet.Testlet;

/**
 * Some checks for the valueOf(double) method in the {@link Double} class.
 */
public class valueOfDouble implements Testlet 
{

  /**
   * Runs the test using the specified harness.
   * 
   * @param harness  the test harness (<code>null</code> not permitted).
   */
  public void test(TestHarness harness)      
  {
    testRegular(harness);
    testInfinities(harness);
    testNaN(harness);
  }

  /**
   * Tests some regular values.
   * 
   * @param harness  the test harness.
   */
  public void testRegular(TestHarness harness) 
  {
    harness.check(Double.valueOf(1.0), new Double(1.0));
    harness.check(Double.valueOf(+1.0), new Double(1.0));
    harness.check(Double.valueOf(-1.0), new Double(-1.0));

    harness.check(Double.valueOf(42.), new Double(42.0));
    harness.check(Double.valueOf(.42), new Double(0.42));
    harness.check(Double.valueOf(Double.MIN_VALUE), new Double(Double.MIN_VALUE));
    harness.check(Double.valueOf(Double.MAX_VALUE), new Double(Double.MAX_VALUE));
  }

  /**
   * Some checks for values that should be read as Double.POSITIVE_INFINITY
   * or Double.NEGATIVE_INFINITY.
   * 
   * @param harness  the test harness.
   */
  public void testInfinities(TestHarness harness) 
  {
    harness.check(Double.valueOf(Double.POSITIVE_INFINITY), new Double(Double.POSITIVE_INFINITY));
    harness.check(Double.valueOf(Double.NEGATIVE_INFINITY), new Double(Double.NEGATIVE_INFINITY));
  }

  /**
   * Some checks for 'NaN' values.
   * 
   * @param harness  the test harness.
   */
  public void testNaN(TestHarness harness) 
  {
    harness.check(Double.valueOf(Double.NaN), new Double(Double.NaN));
    harness.check(Double.valueOf(-Double.NaN), new Double(Double.NaN));
    harness.check(Double.valueOf(+Double.NaN), new Double(Double.NaN));
  }
}