Adding two new cases to the test.

This commit is contained in:
pschwartau%netscape.com 2001-08-09 23:22:16 +00:00
Родитель a39f79907f
Коммит d0f11628fb
1 изменённых файлов: 14 добавлений и 0 удалений

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

@ -98,6 +98,20 @@ expect = TYPE_OBJECT;
addThis();
// Let's try calling F1 without providing a parameter -
status = 'Section 5 of test';
actual = F1();
expect = undefined;
addThis();
// Let's try calling F1 with too many parameters -
status = 'Section 6 of test';
actual = F1(3,33,333);
expect = 3;
addThis();
//-----------------------------------------------------------------------------
test();