mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 05:18:32 +02:00
33 lines
1010 B
JavaScript
33 lines
1010 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* Returns a boolean value (not a Boolean object) computed by
|
|
* ToBoolean(value)
|
|
*
|
|
* @path ch15/15.6/15.6.1/S15.6.1.1_A1_T1.js
|
|
* @description Used values 1, new String("1"), new Object(1) and called without argument
|
|
*/
|
|
|
|
//CHECK#1
|
|
if( typeof Boolean() !== "boolean" ) {
|
|
$ERROR('#1: typeof Boolean() should be "boolean", actual is "'+typeof Boolean()+'"');
|
|
}
|
|
|
|
//CHECK#2
|
|
if( typeof Boolean(1) !== "boolean" ) {
|
|
$ERROR('#2: typeof Boolean(1) should be "boolean", actual is "'+typeof Boolean(1)+'"');
|
|
}
|
|
|
|
//CHECK#3
|
|
if( typeof Boolean(new String("1")) !== "boolean" ) {
|
|
$ERROR('#3: typeof Boolean(new String("1")) should be "boolean", actual is "'+typeof Boolean(new String("1"))+'"');
|
|
}
|
|
|
|
//CHECK#4
|
|
if( typeof Boolean(new Object(1)) !== "boolean" ) {
|
|
$ERROR('#4: typeof Boolean(new Object(1)) should be "boolean", actual is "'+typeof Boolean(new Object(1))+'"');
|
|
}
|
|
|
|
|