Assert: Check if TextExecutionContext.CurrentContext is valid.

This commit is contained in:
Virgile Bello 2013-07-10 11:47:27 +09:00
Родитель 5c6824f4b7
Коммит ba255da522
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -1915,7 +1915,9 @@ namespace NUnit.Framework
private static void IncrementAssertCount()
{
TestExecutionContext.CurrentContext.IncrementAssertCount();
var currentContext = TestExecutionContext.CurrentContext;
if (currentContext != null)
currentContext.IncrementAssertCount();
}
#endregion