Click here to Skip to main content
15,884,629 members
Articles / Programming Languages / C#
Tip/Trick

In-assembly Parallel "IAP" Test Execution using MsTest V2 and Specflow

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
6 Mar 2018MIT2 min read 8.5K   85   1   1
Setup and usage of MSTest V2 and Specflow to run tests within a single assembly in parallel

Image 1

Introduction

Finally, I can run my C# mstests in parallel without significant modification. This is a feature that I have been dreaming for several years, and now it is here! New features in MSTest V2 and specflow allow tests to be run in parallel from within a single test assembly. This is just a quick setup/usage guide to get started with running mstests in parallel using specflow.

Background

Until recently, Microsoft test parallelism was "realized by launching the test execution engine on each available core as a distinct process, and handing it a container (assembly, DLL, or relevant artifact containing the tests to execute), worth of tests to execute." Visual Studio 2015 Update 1 Parallel Execution

Limiting MSTest parallelism on the container level was highly limiting, reducing performance gains by increasing code complexity and maintainability. Not only can we use container level parallelism, we can elect to use method, class, or custom levels of parallelism.

Specflow Caveats

  • Only runs on .NET framework currently, work is under-way to support netstandard and netcore
  • Supports only "Class" and "Container" level parallelism with mstest v2

Using the Code

The processes of using mstest v2 parallelism, and specflow to author tests is documented here:

But there is really no documentation tying them together to run specflow mstestv2 tests in parallel.

Install Required nuget Packages

Update "SpecFlow" and "specFlow.MsTest" nuget packages in project.

Image 2

Update "MSTest.TestAdapter" and "MSTest.TestFramework" nuget packages in project.

Image 3

Add a runsetting File to the Project

Image 4

Add contents into runsettings file and any other "TestRunParameters" you might need.

XML
<?xml version="1.0" encoding="utf-8"?>
<RunSettings>
  <!-- Path to Test Adapters Use for mstest v2 set assembly to copy always-->
  <TestAdaptersPaths>.\</TestAdaptersPaths>
  <MSTest>
    <Parallelize>
      <Workers>3</Workers> <!-- level of parallelism-->
      <Scope>ClassLevel</Scope> <!-- scope of parallelism-->
    </Parallelize>
  </MSTest>
</RunSettings>

Change the SpecFlow "unitTestProvider" in App.config to "MSTest.V2"

XML
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <section name="specFlow" type="TechTalk.SpecFlow.Configuration.ConfigurationSectionHandler, 
     TechTalk.SpecFlow" />
  </configSections>
  <specFlow>
  <!-- For additional details on SpecFlow 
       configuration options see http://go.specflow.org/doc-config -->
    <unitTestProvider name="MsTest.v2" /></specFlow>
</configuration>

Don't forget to select the .runsettings file from Visual Studio's Test=>Test Settings =>Select Test Settings File.

Download the Simple Sample Project, Run and Enjoy!

Image 5

Points of Interest

  • Remember, specflow currently supports "Class" and "Container" level parallelism with mstest v2.
  • Would be nice to have method level parallelism to utilize all the cores constantly. With large tests suites with multiple classes, we have noticed a performance increase of 75% across 150 classes and 2000+ tests using 4 cores.
  • MSTest V2 when run in parallel has issues with test output becoming mixed up, there is currently work being done to resolve this from MS's side.
  • Any tests written in C#/specflow can be used including selenium tests if thread save and can run in a non-isolated test run.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionTried same steps but Got sequence of Errors in Each Step Pin
vaibhav vijay18-Jun-19 4:59
vaibhav vijay18-Jun-19 4:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.