JavaScript Test - update test for bug 350312

This commit is contained in:
bclary%bclary.com 2006-08-28 23:01:34 +00:00
Родитель d076e64b5e
Коммит 01e8bc30e3
1 изменённых файлов: 22 добавлений и 3 удалений

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

@ -66,21 +66,40 @@ function test()
{
try
{
actual += 'finally,';
throw 42;
}
catch(e2)
{
actual += e2;
writeLineToLog(e2);
}
}
return 'returned';
}
expect = 42;
expect = 'finally,42';
actual = '';
actual = f(2, 1);
try
{
writeLineToLog('test 1');
f(2, 1);
}
catch(ex)
{
}
reportCompare(expect, actual, summary);
actual = f(2, 0);
actual = '';
try
{
writeLineToLog('test 2');
f(2, 0);
}
catch(ex)
{
}
reportCompare(expect, actual, summary);
exitFunc ('test');