aboutsummaryrefslogtreecommitdiffstats
path: root/external/contributions/Google/sputniktests/tests/Conformance/15_Native_ECMA_Script_Objects/15.6_Boolean_Objects/15.6.4_Properties_of_the_Boolean_Prototype_Object/S15.6.4.3_A1_T2.js
blob: 77362c7817583732a5b6b564054ff9316f4583fd (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
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * @name: S15.6.4.3_A1_T2;
 * @section: 15.6.4.3;
 * @assertion: Boolean.prototype.valueOf() returns this boolean value;
 * @description: calling with argument;
*/

//CHECK#1
if(Boolean.prototype.valueOf(true) !== false){
  $ERROR('#1: Boolean.prototype.valueOf(true) === false');
}

//CHECK#2
if((new Boolean()).valueOf(true) !== false){
  $ERROR('#2: (new Boolean()).valueOf(true) === false');
}

//CHECK#3
if((new Boolean(0)).valueOf(true) !== false){
  $ERROR('#3: (new Boolean(0)).valueOf(true) === false');
}

//CHECK#4
if((new Boolean(-1)).valueOf(false) !== true){
  $ERROR('#4: (new Boolean(-1)).valueOf(false) === true');
}

//CHECK#5
if((new Boolean(1)).valueOf(false) !== true){
  $ERROR('#5: (new Boolean(1)).valueOf(false) === true');
}

//CHECK#6
if((new Boolean(new Object())).valueOf(false) !== true){
  $ERROR('#6: (new Boolean(new Object())).valueOf(false) === true');
}