Ensure that calling printStackTrace doesn't crash the VM

This commit is contained in:
Marco Castelluccio 2015-06-28 07:53:14 +02:00
Родитель 48345f92b0
Коммит 8fa75ab364
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -15,5 +15,7 @@ public class ThrowableTest implements Testlet {
s = t.getClass().getName() + ": " + t.getMessage();
th.check(t.getMessage().equals("test"));
th.check(t.toString().equals(s));
t.printStackTrace();
}
}