rhino1.7.6.testsrc.tests.lc3.instanceof.instanceof-001.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rhino Show documentation
Show all versions of rhino Show documentation
Rhino is an open-source implementation of JavaScript written entirely in Java. It is typically
embedded into Java applications to provide scripting to end users.
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
gTestfile = 'instanceof-001.js';
/**
* Verify that we can use the instanceof operator on java objects.
*
*
*/
var SECTION = "instanceof";
var VERSION = "1_4";
var TITLE = "LiveConnect 3.0 JavaScript to Java Data Type Conversion " +
SECTION;
startTest();
new TestCase(
"\"hi\" instance of java.lang.String",
false,
"hi" instanceof java.lang.String );
new TestCase(
"new java.lang.String(\"hi\") instanceof java.lang.String",
true,
new java.lang.String("hi") instanceof java.lang.String );
new TestCase(
"new java.lang.String(\"hi\") instanceof java.lang.Object",
true,
new java.lang.String("hi") instanceof java.lang.Object );
new TestCase(
"java.lang.String instanceof java.lang.Class",
false,
java.lang.String instanceof java.lang.Class );
new TestCase(
"java.lang.Class.forName(\"java.lang.String\") instanceof java.lang.Class",
true,
java.lang.Class.forName("java.lang.String") instanceof java.lang.Class );
new TestCase(
"new java.lang.Double(5.0) instanceof java.lang.Double",
true,
new java.lang.Double(5.0) instanceof java.lang.Double );
new TestCase(
"new java.lang.Double(5.0) instanceof java.lang.Number",
true,
new java.lang.Double(5.0) instanceof java.lang.Number );
new TestCase(
"new java.lang.String(\"hi\").getBytes() instanceof java.lang.Double",
true,
new java.lang.Double(5.0) instanceof java.lang.Double );
test();
© 2015 - 2024 Weber Informatics LLC | Privacy Policy