mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 03:08:42 +00:00
82 lines
3.5 KiB
JavaScript
82 lines
3.5 KiB
JavaScript
/*
|
|
* Copyright 2008 Jacek Caban for CodeWeavers
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
ok(true, "true is not true?");
|
|
ok(!false, "!false is not true");
|
|
ok(!undefined, "!undefined is not true");
|
|
ok(!null, "!null is not true");
|
|
ok(!0, "!0 is not true");
|
|
ok(!0.0, "!0.0 is not true");
|
|
|
|
ok(1 === 1, "1 === 1 is false");
|
|
ok(!(1 === 2), "!(1 === 2) is false");
|
|
ok(1.0 === 1, "1.0 === 1 is false");
|
|
ok("abc" === "abc", "\"abc\" === \"abc\" is false");
|
|
ok(true === true, "true === true is false");
|
|
ok(null === null, "null === null is false");
|
|
ok(undefined === undefined, "undefined === undefined is false");
|
|
ok(!(undefined === null), "!(undefined === null) is false");
|
|
|
|
ok(1 !== 2, "1 !== 2 is false");
|
|
ok(null !== undefined, "null !== undefined is false");
|
|
|
|
var trueVar = true;
|
|
ok(trueVar, "trueVar is not true");
|
|
|
|
ok(ScriptEngine.length === 0, "ScriptEngine.length is not 0");
|
|
|
|
function testFunc1(x, y) {
|
|
ok(this !== undefined, "this is undefined");
|
|
ok(x === true, "x is not 1");
|
|
ok(y === "test", "y is not \"test\"");
|
|
ok(arguments.length === 2, "arguments.length is not 2");
|
|
ok(arguments["0"] === true, "arguments[0] is not true");
|
|
ok(arguments["1"] === "test", "arguments[1] is not \"test\"");
|
|
|
|
return true;
|
|
}
|
|
|
|
ok(testFunc1.length === 2, "testFunc1.length is not 2");
|
|
|
|
ok(Object.prototype !== undefined, "Object.prototype is undefined");
|
|
ok(Object.prototype.prototype === undefined, "Object.prototype is not undefined");
|
|
ok(String.prototype !== undefined, "String.prototype is undefined");
|
|
ok(Array.prototype !== undefined, "Array.prototype is undefined");
|
|
ok(Boolean.prototype !== undefined, "Boolean.prototype is undefined");
|
|
ok(Number.prototype !== undefined, "Number.prototype is undefined");
|
|
ok(RegExp.prototype !== undefined, "RegExp.prototype is undefined");
|
|
ok(Math !== undefined, "Math is undefined");
|
|
ok(Math.prototype === undefined, "Math.prototype is not undefined");
|
|
|
|
ok(typeof(0) === "number", "typeof(0) is not number");
|
|
ok(typeof(1.5) === "number", "typeof(1.5) is not number");
|
|
ok(typeof("abc") === "string", "typeof(\"abc\") is not string");
|
|
ok(typeof("") === "string", "typeof(\"\") is not string");
|
|
ok(typeof(true) === "boolean", "typeof(true) is not boolean");
|
|
ok(typeof(null) === "object", "typeof(null) is not object");
|
|
ok(typeof(undefined) === "undefined", "typeof(undefined) is not undefined");
|
|
ok(typeof(Math) === "object", "typeof(Math) is not object");
|
|
ok(typeof(String.prototype) === "object", "typeof(String.prototype) is not object");
|
|
ok(typeof(testFunc1) === "function", "typeof(testFunc1) is not function");
|
|
ok(typeof(String) === "function", "typeof(String) is not function");
|
|
ok(typeof(ScriptEngine) === "function", "typeof(ScriptEngine) is not function");
|
|
ok(typeof(this) === "object", "typeof(this) is not object");
|
|
|
|
ok(testFunc1(true, "test") === true, "testFunc1 not returned true");
|
|
|
|
reportSuccess();
|