mirror of https://github.com/tc39/test262.git
73 lines
2.0 KiB
JavaScript
73 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.
|
|
|
|
/*---
|
|
info: The Boolean type have two values, called true and false
|
|
es5id: 8.3_A1_T2
|
|
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');
|
|
}
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|