aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/09_Type_Conversion/9.3_ToNumber/9.3.1_ToNumber_from_String/S9.3.1_A20.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/09_Type_Conversion/9.3_ToNumber/9.3.1_ToNumber_from_String/S9.3.1_A20.js')
-rw-r--r--test/suite/sputnik_converted/09_Type_Conversion/9.3_ToNumber/9.3.1_ToNumber_from_String/S9.3.1_A20.js41
1 files changed, 0 insertions, 41 deletions
diff --git a/test/suite/sputnik_converted/09_Type_Conversion/9.3_ToNumber/9.3.1_ToNumber_from_String/S9.3.1_A20.js b/test/suite/sputnik_converted/09_Type_Conversion/9.3_ToNumber/9.3.1_ToNumber_from_String/S9.3.1_A20.js
deleted file mode 100644
index bf4f1a889..000000000
--- a/test/suite/sputnik_converted/09_Type_Conversion/9.3_ToNumber/9.3.1_ToNumber_from_String/S9.3.1_A20.js
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @name: S9.3.1_A20;
- * @section: 9.3.1, 15.7.1;
- * @assertion: The MV of DecimalDigit ::: 4 or of HexDigit ::: 4 is 4;
- * @description: Compare Number('0x4') and Number('0X4') with 4;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S9.3.1_A20",
-
-path: "TestCases/09_Type_Conversion/9.3_ToNumber/9.3.1_ToNumber_from_String/S9.3.1_A20.js",
-
-assertion: "The MV of DecimalDigit ::: 4 or of HexDigit ::: 4 is 4",
-
-description: "Compare Number(\'0x4\') and Number(\'0X4\') with 4",
-
-test: function testcase() {
- // CHECK#1
-if (Number("4") !== 4) {
- $ERROR('#1: Number("4") === 4. Actual: ' + (Number("4")));
-}
-
-// CHECK#2
-if (Number("0x4") !== 4) {
- $ERROR('#2: Number("0x4") === 4. Actual: ' + (Number("0x4")));
-}
-
-// CHECK#3
-if (+("0X4") !== 4) {
- $ERROR('#3: +("0X4") === 4. Actual: ' + (+("0X4")));
-}
-
- }
-});
-