I remember reading on a forum that C# Unit/Integration/Functional tests run in alphabetically order but that doesn't seem to be the case. I have 1 file that holds all of my tests and I put them from top to bottom in order like this.
- A1_PostFirsttoRegisterClaimsAdmin
- B2_CreateMasterWalletTest
- C3_SendCoinsToProfile
- D4_LoginTest
But when I click "Run All Tests," it runs in this order.
So how do I get the tests to run in order?