Table of Contents

Interface ITestProcessLauncher

Namespace
Xunit.v3
Assembly
xunit.v3.runner.utility.netfx.dll

Implement this to control the launch of an xUnit.net v3 test process.

public interface ITestProcessLauncher

Methods

Launch(XunitProjectAssembly, IReadOnlyList<string>)

Launches the test process. Returns null if the process could not be launched.

ITestProcess? Launch(XunitProjectAssembly projectAssembly, IReadOnlyList<string> arguments)

Parameters

projectAssembly XunitProjectAssembly

The test project assembly

arguments IReadOnlyList<string>

The list of arguments to be passed to the in-process runner

Returns

ITestProcess