JavaScript Tests - catch exception, bug 355556

This commit is contained in:
bclary%bclary.com 2006-10-09 12:17:24 +00:00
Родитель b77cb63ab8
Коммит 88e2666cd7
1 изменённых файлов: 10 добавлений и 2 удалений

Просмотреть файл

@ -50,8 +50,16 @@ function test()
enterFunc ('test');
printBugNumber (bug);
printStatus (summary);
(function () { eval("'foo'.b()", arguments) })()
expect = 'TypeError: "foo".b is not a function';
try
{
(function () { eval("'foo'.b()", arguments) })();
}
catch(ex)
{
actual = ex + '';
}
reportCompare(expect, actual, summary);
exitFunc ('test');