Class XunitProject
Represents a project which contains zero or more test assemblies, as well as global (cross-assembly) configuration settings.
public class XunitProject
- Inheritance
-
XunitProject
- Inherited Members
Properties
Assemblies
Gets the assemblies that are in the project.
public ICollection<XunitProjectAssembly> Assemblies { get; }
Property Value
Configuration
Gets the configuration values for the test project.
public TestProjectConfiguration Configuration { get; }
Property Value
HasRunnerReporter
Gets a flag indicating whether RunnerReporter has been set yet or not.
public bool HasRunnerReporter { get; }
Property Value
RunnerReporter
Gets or sets the runner reporter.
public IRunnerReporter RunnerReporter { get; set; }
Property Value
Methods
Add(XunitProjectAssembly)
Adds an assembly to the project.
public void Add(XunitProjectAssembly assembly)
Parameters
assemblyXunitProjectAssemblyThe assembly to add to the project.