jdk/test/javax/script/Test2.js
author ohair
Mon, 04 Jan 2010 15:45:30 -0800
changeset 4660 913e357c2e08
parent 2 90ce3da70b43
permissions -rw-r--r--
6911112: Tests do not work with CYGWIN: javax/imageio/, javax/script/, and sun/misc/ Reviewed-by: tbell, alanb

if (Testobj.getVal() != 'Hello World') {
    throw "unexpected value";
}

Testobj = "a string";
if (Testobj.getVal != undefined ||
    Testobj != 'a string') {
    throw "can' change Testobj?";
}