mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 05:18:32 +02:00
76 lines
2.0 KiB
JavaScript
76 lines
2.0 KiB
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* The Boolean type have two values, called true and false
|
|
*
|
|
* @path ch08/8.3/S8.3_A1_T2.js
|
|
* @description Check type of true/false and it`s equality
|
|
*/
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// CHECK#1
|
|
if (typeof(true) !== "boolean") {
|
|
$ERROR('#1: typeof(true) === "boolean"');
|
|
}
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// CHECK#2
|
|
if (typeof(true) != "boolean") {
|
|
$ERROR('#2: typeof(true) == "boolean"');
|
|
}
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// CHECK#3
|
|
if (typeof(false) !== "boolean") {
|
|
$ERROR('#3: typeof(false) === "boolean"');
|
|
}
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// CHECK#4
|
|
if (typeof(false) != "boolean") {
|
|
$ERROR('#4: typeof(false) == "boolean"');
|
|
}
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// CHECK#5
|
|
if (true === false) {
|
|
$ERROR('#5: true !== false');
|
|
}
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// CHECK#6
|
|
if (true == false) {
|
|
$ERROR('#6: true != false');
|
|
}
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// CHECK#7
|
|
if (false === true) {
|
|
$ERROR('#7: false !== true');
|
|
}
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// CHECK#8
|
|
if (false == true) {
|
|
$ERROR('#8: false != true');
|
|
}
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|