1

I'm using Expecto.VisualStudio.TestAdapter to integrate with Visual Studio 2017. How do I set configuration options for Expecto so that the Visual Studio test runner will pick them up?

I specifically need to set parallel = false for a given test assembly.

rmunn
  • 34,942
  • 10
  • 74
  • 105
Coding Dude
  • 617
  • 1
  • 6
  • 16

1 Answers1

3

Looking at the code for the Expecto Visual Studio Test Adapter, I don't think you can. At least, not without modifying the Test Adapter code and creating your own version. Perhaps fork the project and create a Pull Request that allows the configuration to be tweaked.

The relevant section is in Executor.fs on line 160 (in the ExecuteProxy class). It calls runTests with { defaultConfig with printer = testPrinters }. You could create your own ExecuteProxy class that takes the configuration to use when calling runTests as a parameter, and then create a generic version of AssemblyExecutor that takes a type parameter telling it what type of ExecuteProxy to use.

Aaron M. Eshbach
  • 6,380
  • 12
  • 22