blob: e4fc9b7788241ce2d16351849925e69a7f04f379 [file] [log] [blame]
// 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 its 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');
}
//
//////////////////////////////////////////////////////////////////////