FailureSite
The FailureSite enum indicates the stage of a test
in which an error or failure occurred.
namespace NUnit.Framework.Interfaces
{
public enum FailureSite
{
Test,
SetUp,
TearDown,
Parent,
Child
}
}