2012-03-12 3 views

답변

0

, 난 당신이 다음 예외를 잡기 위해 try-catch 문을 사용하는 예외 객체가 아닌이

+0

가 그럼 난 모든 테스트에서이 작업을 수행해야합니다 :

아마 할 수있는 가장 좋은 것은 서브 클래스 TestAttribute입니다 –

2

에서 사용할 수 있다고 생각 스택 트레이스 등은 로그에서 추출 할 수 있지만 (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(); 
    } 
}