Ensure that we log exceptions during tests

This commit is contained in:
Dustin Campbell 2024-07-16 15:41:19 -07:00
Родитель 3138fb0be6
Коммит 214d921112
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -73,6 +73,11 @@ internal partial class TestOutputLogger : ILogger
try
{
_provider.TestOutputHelper.WriteLine(finalMessage);
if (exception is not null)
{
_provider.TestOutputHelper.WriteLine(exception.ToString());
}
}
catch (Exception ex)
{