Iam a little bit confused about the Parallel attribute of nunit:
Say i have 3 Classes each filled with some tests:
ClassA
- Test1
- Test2
- Test3
ClassB
- Test1
ClassC
- Test1
- Test2
I would like to run Every Test in ClassA and ClassB in parallel (i dont care about order )
I also would like to run ClassC while ClassA and ClassB are running, but in this class i want to keep the order in which i specified the tests
So my question is how should i set the attributes to get a behaviour like this?
I checked the docu https://github.com/nunit/docs/wiki/Framework-Parallel-Test-Execution but iam still confused