Reputation: 1098
I'm new xunit and want to configure the test flow using xunit. For example, there are several test methods A, B, C, D, and I want to ran them in several ways: 1. Run them in a specific order B, A, C, D 2. Warp A, B, C to a test list, they can be ran in random order. etc...
I used MSTest before and found these can be set by modifying the config file, I want to know in xunit, how should I implement?
Thanks.
Upvotes: 1
Views: 337
Reputation: 57816
Go through following links:
Upvotes: 1