MudassarRasool / mb-unit

Automatically exported from code.google.com/p/mb-unit
0 stars 0 forks source link

Icarus test display order #916

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Create a test fixture with three tests:
[Test(Order = 3)]
public void A(){}

[Test(Order = 1)]
public void B(){}

[Test(Order = 2)]
public void C(){}

2. Compile and open it in Icarus

What is the expected output? What do you see instead?
I expected the tests to be listed in this order: B, C, A.
Instead I see: A, B, C

What version of the product are you using? On what operating system?
Icarus: v3.5b11
MbUnit: v3.4.0.0
Gallio: v3.4.0.0
OS: Windows 7 SP1

Please provide any additional information below.
The DependsOn attribute should also impact display order of tests in Icarus

Original issue reported on code.google.com by locket...@gmail.com on 27 Mar 2013 at 11:39