summaryrefslogtreecommitdiff
path: root/test/built-ins/Boolean/S15.6.1.1_A1_T4.js
blob: 18a8bf587b1ff3b98d1e2ec96a639ca1c087e648 (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
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: |
    Returns a boolean value (not a Boolean object) computed by
    ToBoolean(value)
esid: sec-terms-and-definitions-boolean-value
es5id: 15.6.1.1_A1_T4
description: Used various undefined values and null as argument
---*/

//CHECK#1
if (typeof Boolean(undefined) !== "boolean") {
  $ERROR('#1.1: typeof Boolean(undefined) should be "boolean", actual is "' + typeof Boolean(undefined) + '"');
}
if (Boolean(undefined) !== false) {
  $ERROR('#1.2: Boolean(undefined) should be false');
}

//CHECK#2
if (typeof Boolean(void 0) !== "boolean") {
  $ERROR('#2.1: typeof Boolean(void 0) should be "boolean", actual is "' + typeof Boolean(void 0) + '"');
}
if (Boolean(void 0) !== false) {
  $ERROR('#2.2: Boolean(void 0) should be false');
}

//CHECK#3
if (typeof Boolean(function() {}()) !== "boolean") {
  $ERROR('#3.1: typeof Boolean(function(){}()) should be "boolean", actual is "' + typeof Boolean(function() {}()) + '"');
}
if (Boolean(function() {}()) !== false) {
  $ERROR('#3.2: Boolean(function(){}()) should be false');
}

//CHECK#4
if (typeof Boolean(null) !== "boolean") {
  $ERROR('#4.1: typeof Boolean(null) should be "boolean", actual is "' + typeof Boolean(null) + '"');
}
if (Boolean(null) !== false) {
  $ERROR('#4.2: Boolean(null) should be false');
}

//CHECK#5
if (typeof Boolean(x) !== "boolean") {
  $ERROR('#5.1: var x; typeof Boolean(x) should be "boolean", actual is "' + typeof Boolean(x) + '"');
}
if (Boolean(x) !== false) {
  $ERROR('#5.2: var x; Boolean(x) should be false');
}
var x;