* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / Microsoft.JScript / Test / Mozilla / ecma / Math / 15.8.2.15.js
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4  *
5  * The contents of this file are subject to the Mozilla Public License Version
6  * 1.1 (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  * http://www.mozilla.org/MPL/
9  *
10  * Software distributed under the License is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12  * for the specific language governing rights and limitations under the
13  * License.
14  *
15  * The Original Code is Mozilla Communicator client code, released
16  * March 31, 1998.
17  *
18  * The Initial Developer of the Original Code is
19  * Netscape Communications Corporation.
20  * Portions created by the Initial Developer are Copyright (C) 1998
21  * the Initial Developer. All Rights Reserved.
22  *
23  * Contributor(s):
24  *
25  * Alternatively, the contents of this file may be used under the terms of
26  * either the GNU General Public License Version 2 or later (the "GPL"), or
27  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28  * in which case the provisions of the GPL or the LGPL are applicable instead
29  * of those above. If you wish to allow use of your version of this file only
30  * under the terms of either the GPL or the LGPL, and not to allow others to
31  * use your version of this file under the terms of the MPL, indicate your
32  * decision by deleting the provisions above and replace them with the notice
33  * and other provisions required by the GPL or the LGPL. If you do not delete
34  * the provisions above, a recipient may use your version of this file under
35  * the terms of any one of the MPL, the GPL or the LGPL.
36  *
37  * ***** END LICENSE BLOCK ***** */
38
39 /**
40    File Name:          15.8.2.15.js
41    ECMA Section:       15.8.2.15  Math.round(x)
42    Description:        return the greatest number value that is closest to the
43    argument and is an integer.  if two integers are equally
44    close to the argument. then the result is the number value
45    that is closer to Infinity.  if the argument is an integer,
46    return the argument.
47    special cases:
48    - if x is NaN       return NaN
49    - if x = +0         return +0
50    - if x = -0          return -0
51    - if x = Infinity   return Infinity
52    - if x = -Infinity  return -Infinity
53    - if 0 < x < 0.5    return 0
54    - if -0.5 <= x < 0  return -0
55    example:
56    Math.round( 3.5 ) == 4
57    Math.round( -3.5 ) == 3
58    also:
59    - Math.round(x) == Math.floor( x + 0.5 )
60    except if x = -0.  in that case, Math.round(x) = -0
61
62    and Math.floor( x+0.5 ) = +0
63
64
65    Author:             christine@netscape.com
66    Date:               7 july 1997
67 */
68
69 var SECTION = "15.8.2.15";
70 var VERSION = "ECMA_1";
71 startTest();
72 var TITLE   = "Math.round(x)";
73 var BUGNUMBER="331411";
74
75 var EXCLUDE = "true";
76
77 writeHeaderToLog( SECTION + " "+ TITLE);
78
79 new TestCase( SECTION,
80               "Math.round.length",
81               1,
82               Math.round.length );
83
84 new TestCase( SECTION,
85               "Math.round()",
86               Number.NaN,
87               Math.round() );
88
89 new TestCase( SECTION,
90               "Math.round(null)",
91               0,
92               Math.round(0) );
93
94 new TestCase( SECTION,
95               "Math.round(void 0)",
96               Number.NaN,
97               Math.round(void 0) );
98
99 new TestCase( SECTION,
100               "Math.round(true)",
101               1,
102               Math.round(true) );
103
104 new TestCase( SECTION,
105               "Math.round(false)",
106               0,
107               Math.round(false) );
108
109 new TestCase( SECTION,
110               "Math.round('.99999')",
111               1,
112               Math.round('.99999') );
113
114 new TestCase( SECTION,
115               "Math.round('12345e-2')",
116               123,
117               Math.round('12345e-2') );
118
119 new TestCase( SECTION,
120               "Math.round(NaN)",
121               Number.NaN,
122               Math.round(Number.NaN) );
123
124 new TestCase( SECTION,
125               "Math.round(0)",
126               0,
127               Math.round(0) );
128
129 new TestCase( SECTION,
130               "Math.round(-0)",
131               -0,
132               Math.round(-0));
133
134 new TestCase( SECTION,
135               "Infinity/Math.round(-0)",
136               -Infinity,
137               Infinity/Math.round(-0) );
138
139 new TestCase( SECTION,
140               "Math.round(Infinity)", 
141               Number.POSITIVE_INFINITY,
142               Math.round(Number.POSITIVE_INFINITY));
143
144 new TestCase( SECTION,
145               "Math.round(-Infinity)",
146               Number.NEGATIVE_INFINITY,
147               Math.round(Number.NEGATIVE_INFINITY));
148
149 new TestCase( SECTION,
150               "Math.round(0.49)",
151               0,
152               Math.round(0.49));
153
154 new TestCase( SECTION,
155               "Math.round(0.5)",
156               1,
157               Math.round(0.5));
158
159 new TestCase( SECTION,
160               "Math.round(0.51)",
161               1,
162               Math.round(0.51));
163
164 new TestCase( SECTION,
165               "Math.round(-0.49)",
166               -0,
167               Math.round(-0.49));
168
169 new TestCase( SECTION,
170               "Math.round(-0.5)",
171               -0,
172               Math.round(-0.5));
173
174 new TestCase( SECTION,
175               "Infinity/Math.round(-0.49)",
176               -Infinity,
177               Infinity/Math.round(-0.49));
178
179 new TestCase( SECTION,
180               "Infinity/Math.round(-0.5)",
181               -Infinity,
182               Infinity/Math.round(-0.5));
183
184 new TestCase( SECTION,
185               "Math.round(-0.51)",
186               -1,
187               Math.round(-0.51));
188
189 new TestCase( SECTION,
190               "Math.round(3.5)",
191               4,
192               Math.round(3.5));
193
194 new TestCase( SECTION,
195               "Math.round(-3.5)",
196               -3,
197               Math.round(-3));
198
199 test();