aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/15_Native/15.7_Number_Objects/15.7.4_Properties_of_the_Number_Prototype_Object/15.7.4.2_Number.prototype.toString/S15.7.4.2_A2_T02.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/15_Native/15.7_Number_Objects/15.7.4_Properties_of_the_Number_Prototype_Object/15.7.4.2_Number.prototype.toString/S15.7.4.2_A2_T02.js')
-rw-r--r--test/suite/sputnik_converted/15_Native/15.7_Number_Objects/15.7.4_Properties_of_the_Number_Prototype_Object/15.7.4.2_Number.prototype.toString/S15.7.4.2_A2_T02.js67
1 files changed, 0 insertions, 67 deletions
diff --git a/test/suite/sputnik_converted/15_Native/15.7_Number_Objects/15.7.4_Properties_of_the_Number_Prototype_Object/15.7.4.2_Number.prototype.toString/S15.7.4.2_A2_T02.js b/test/suite/sputnik_converted/15_Native/15.7_Number_Objects/15.7.4_Properties_of_the_Number_Prototype_Object/15.7.4.2_Number.prototype.toString/S15.7.4.2_A2_T02.js
deleted file mode 100644
index a9fad534a..000000000
--- a/test/suite/sputnik_converted/15_Native/15.7_Number_Objects/15.7.4_Properties_of_the_Number_Prototype_Object/15.7.4.2_Number.prototype.toString/S15.7.4.2_A2_T02.js
+++ /dev/null
@@ -1,67 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @name: S15.7.4.2_A2_T02;
- * @section: 15.7.4.2;
- * @assertion: toString: If radix is an integer from 2 to 36, but not 10,
- * the result is a string, the choice of which is implementation-dependent;
- * @description: radix is 3;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S15.7.4.2_A2_T02",
-
-path: "TestCases/15_Native/15.7_Number_Objects/15.7.4_Properties_of_the_Number_Prototype_Object/15.7.4.2_Number.prototype.toString/S15.7.4.2_A2_T02.js",
-
-assertion: "toString: If radix is an integer from 2 to 36, but not 10,",
-
-description: "radix is 3",
-
-test: function testcase() {
- //CHECK#1
-if(Number.prototype.toString(3) !== "0"){
- $ERROR('#1: Number.prototype.toString(3) === "0"');
-}
-
-//CHECK#2
-if((new Number()).toString(3) !== "0"){
- $ERROR('#2: (new Number()).toString(3) === "0"');
-}
-
-//CHECK#3
-if((new Number(0)).toString(3) !== "0"){
- $ERROR('#3: (new Number(0)).toString(3) === "0"');
-}
-
-//CHECK#4
-if((new Number(-1)).toString(3) !== "-1"){
- $ERROR('#4: (new Number(-1)).toString(3) === "-1"');
-}
-
-//CHECK#5
-if((new Number(1)).toString(3) !== "1"){
- $ERROR('#5: (new Number(1)).toString(3) === "1"');
-}
-
-//CHECK#6
-if((new Number(Number.NaN)).toString(3) !== "NaN"){
- $ERROR('#6: (new Number(Number.NaN)).toString(3) === "NaN"');
-}
-
-//CHECK#7
-if((new Number(Number.POSITIVE_INFINITY)).toString(3) !== "Infinity"){
- $ERROR('#7: (new Number(Number.POSITIVE_INFINITY)).toString(3) === "Infinity"');
-}
-
-//CHECK#8
-if((new Number(Number.NEGATIVE_INFINITY)).toString(3) !== "-Infinity"){
- $ERROR('#8: (new Number(Number.NEGATIVE_INFINITY)).toString(3) === "-Infinity"');
-}
-
- }
-});
-