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.4_Number.prototype.valueOf/S15.7.4.4_A1_T01.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.4_Number.prototype.valueOf/S15.7.4.4_A1_T01.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.4_Number.prototype.valueOf/S15.7.4.4_A1_T01.js66
1 files changed, 0 insertions, 66 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.4_Number.prototype.valueOf/S15.7.4.4_A1_T01.js b/test/suite/sputnik_converted/15_Native/15.7_Number_Objects/15.7.4_Properties_of_the_Number_Prototype_Object/15.7.4.4_Number.prototype.valueOf/S15.7.4.4_A1_T01.js
deleted file mode 100644
index 44a47894f..000000000
--- a/test/suite/sputnik_converted/15_Native/15.7_Number_Objects/15.7.4_Properties_of_the_Number_Prototype_Object/15.7.4.4_Number.prototype.valueOf/S15.7.4.4_A1_T01.js
+++ /dev/null
@@ -1,66 +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.4_A1_T01;
- * @section: 15.7.4.4;
- * @assertion: Number.prototype.valueOf() returns this number value;
- * @description: Call without argument;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S15.7.4.4_A1_T01",
-
-path: "TestCases/15_Native/15.7_Number_Objects/15.7.4_Properties_of_the_Number_Prototype_Object/15.7.4.4_Number.prototype.valueOf/S15.7.4.4_A1_T01.js",
-
-assertion: "Number.prototype.valueOf() returns this number value",
-
-description: "Call without argument",
-
-test: function testcase() {
- //CHECK#1
-if(Number.prototype.valueOf() !== 0){
- $ERROR('#1: Number.prototype.valueOf() === 0');
-}
-
-//CHECK#2
-if((new Number()).valueOf() !== 0){
- $ERROR('#2: (new Number()).valueOf() === 0');
-}
-
-//CHECK#3
-if((new Number(0)).valueOf() !== 0){
- $ERROR('#3: (new Number(0)).valueOf() === 0');
-}
-
-//CHECK#4
-if((new Number(-1)).valueOf() !== -1){
- $ERROR('#4: (new Number(-1)).valueOf() === -1');
-}
-
-//CHECK#5
-if((new Number(1)).valueOf() !== 1){
- $ERROR('#5: (new Number(1)).valueOf() === 1');
-}
-
-//CHECK#6
-if(!isNaN((new Number(Number.NaN)).valueOf())){
- $ERROR('#6: (new Number(Number.NaN)).valueOf() === NaN');
-}
-
-//CHECK#7
-if((new Number(Number.POSITIVE_INFINITY)).valueOf() !== Number.POSITIVE_INFINITY){
- $ERROR('#7: (new Number(Number.POSITIVE_INFINITY)).valueOf() === Infinity');
-}
-
-//CHECK#8
-if((new Number(Number.NEGATIVE_INFINITY)).valueOf() !== Number.NEGATIVE_INFINITY){
- $ERROR('#8: (new Number(Number.NEGATIVE_INFINITY)).valueOf() === -Infinity');
-}
-
- }
-});
-