aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/11_Expressions/11.4_Unary_Operators/11.4.9_Logical_NOT_Operator/S11.4.9_A3_T2.js
blob: 0f462e7ad3200d573cbca87734b50379b6d3c7fd (plain)
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
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
* @name: S11.4.9_A3_T2;
* @section: 11.4.9;
* @assertion: Operator !x returns !ToBoolean(x);
* @description: Type(x) is number primitive or Number object;
*/


// Converted for Test262 from original Sputnik source

ES5Harness.registerTest( {
id: "S11.4.9_A3_T2",

path: "TestCases/11_Expressions/11.4_Unary_Operators/11.4.9_Logical_NOT_Operator/S11.4.9_A3_T2.js",

assertion: "Operator !x returns !ToBoolean(x)",

description: "Type(x) is number primitive or Number object",

test: function testcase() {
   //CHECK#1
if (!0.1 !== false) {
  $ERROR('#1: !0.1 === false');
}

//CHECK#2
if (!new Number(-0.1) !== false) {
  $ERROR('#2: !new Number(-0.1) === false');
}

//CHECK#3
if (!NaN !== true) {
  $ERROR('#3: !NaN === true');
}

//CHECK#4
if (!new Number(NaN) !== false) {
  $ERROR('#4: !new Number(NaN) === false');
}

//CHECK#5
if (!0 !== true) {
  $ERROR('#5: !0 === true');
}

//CHECK#6
if (!new Number(0) !== false) {
  $ERROR('#6: !new Number(0) === false');
}

//CHECK#7
if (!Infinity !== false) {
  $ERROR('#7: !Infinity === false');
}

 }
});