mstest Ordered Tests

  • Thread starter Thread starter JimL
  • Start date Start date
J

JimL

I'm just getting to grips with MSTest test projects in Visual Studio
team system. I've discovered that in order to run my individual tests
in a particular order, I have to create an "ordered test". However,
when I run this, I don't get output from the individual tests, but
just from the whole ordered test, so if an element fails, I just get a
fail for the whole ordered test.

Is there any way to see the individual results of the ordered test
elements?

Thanks,
Jim
 
I'm just getting to grips with MSTest test projects in Visual Studio
team system. I've discovered that in order to run my individual tests
in a particular order, I have to create an "ordered test". However,
when I run this, I don't get output from the individual tests, but
just from the whole ordered test, so if an element fails, I just get a
fail for the whole ordered test.

Is there any way to see the individual results of the ordered test
elements?

Thanks,
Jim

OK, thanks, I got it - right click in the Test Results pane and select
"View Test Results Details"

Jim
 
Back
Top