visual studio 2012 - NUnit 3.0.1 for C#: how to run a few test from the same class in parallel way -
im using vs2012 + resharper. created nunit test projest (nunit 3.0.1) , added parallelizable attribute test classes. works in parallel way when started classes. when it's started 1 class, runs test one-by-one. im staring tests visual studio's resharper window.
how run few tests 1 class in parallel way?
as of nunit 3.0 (including 3.0.1) individual tests not yet parallelizable. lowest level of parallelization between testfixtures.
if using parallelizable.children
- has same functionality parallelizable.fixtures
. allowing individual tests run in parallel planned future releases, @ point parallelizable.children
attribute want, believe.
this documented here.
Comments
Post a Comment