3

I have been working on Parallel Unit Testing with the help of PnUnit (Parallel NUnit) in one of my project.

Now I want to replace this which is equivalent to PNunit for parallel testing which can run with NUnit or XUnit in dotNet.

Can anyone suggest me the alternative for this.

Moiz
  • 2,409
  • 5
  • 27
  • 50
  • Any specific reason that PNUnit doesnt work for you? As long as they are pure micro/unit tests, you can use a shell/c# script to fork multiple NUnit processes and then collate the results at the end. If the tests need to be parallelized across machines, you'd need a more beefy tool/script – Gishu Dec 24 '13 at 06:37
  • It works completely fine, The reason is it just run around 5-10 users on one machine. I want around 30-50 users on one machine. – Moiz Dec 24 '13 at 06:41
  • Are these unit tests or load tests ? Because Microsoft has a load test tool that simulates simultaneous users with arbitrary values.. – Gishu Dec 24 '13 at 09:17
  • These are load tests.where we give the load to system by logging multiple users at the same time. – Moiz Dec 25 '13 at 08:10

1 Answers1

0

PNUnit seemed to be the best option available. Other Parallel unit testing tools available but they are not free.

Moiz
  • 2,409
  • 5
  • 27
  • 50