1

I would like to know if using this answer skips the following test methods or marks it as fails. I know if priority is used the following methods will be run and will not be dependent. I wanna know how method interceptor orders the methods....

Thanks...

Community
  • 1
  • 1
Manoj
  • 497
  • 7
  • 13

1 Answers1

0

I believe what you're asking is: When using an IMethodInterceptor to order tests, will a failed test method cause subsequent tests to fail? No. Ordering tests using IMethodInterceptor does not create dependencies.

This is pretty easy to test yourself. I definitely recommend trying it out to see how it behaves in different scenarios.

skirkpatrick
  • 218
  • 1
  • 8