1
if (Testobj.getVal() != 'Hello World') {
2
throw "unexpected value";
3
}
4
5
Testobj = "a string";
6
if (Testobj.getVal != undefined ||
7
Testobj != 'a string') {
8
throw "can' change Testobj?";
9