TestContext.CurrentContext.Outcome을 살펴 봤지만 찾고있는 것이 없습니다. 내가 제대로 질문을 이해한다면MbUnit TestContext에서 실패한 예외를 검색하는 방법
감사
파블
TestContext.CurrentContext.Outcome을 살펴 봤지만 찾고있는 것이 없습니다. 내가 제대로 질문을 이해한다면MbUnit TestContext에서 실패한 예외를 검색하는 방법
감사
파블
, 난 당신이 다음 예외를 잡기 위해 try-catch 문을 사용하는 예외 객체가 아닌이
에서 사용할 수 있다고 생각 스택 트레이스 등은 로그에서 추출 할 수 있지만 (https://github.com/Gallio/Gallio-VS2011-Integration/blob/master/MbUnitAdapter/MbUnitAdapter/StackTraceHunter.cs 참조). 내가 피하기 위해 노력하고있어 어떤
public class InspectExceptionAttribute : TestAttribute
{
protected override void Execute(PatternTestInstanceState state)
{
try
{
base.Execute(state);
}
catch (Exception e)
{
// do something with e
}
}
}
public class InspectExceptionTests
{
[InspectException]
public void With_interceptor()
{
throw new NotImplementedException();
}
[Test]
public void Without_interceptor()
{
throw new NotImplementedException();
}
}
가 그럼 난 모든 테스트에서이 작업을 수행해야합니다 :
아마 할 수있는 가장 좋은 것은 서브 클래스 TestAttribute입니다 –