Table of Contents

Interface IDiscoveryStarting

Namespace
Xunit.Sdk

This message indicates that the discovery process is starting for the requested assembly.

public interface IDiscoveryStarting : ITestAssemblyMessage, IMessageSinkMessage, IJsonSerializable
Inherited Members
Extension Methods

Properties

AssemblyName

Gets the assembly name. May return a simple assembly name (i.e., "mscorlib"), or may return a fully qualified name (i.e., "mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089").

string AssemblyName { get; }

Property Value

string

AssemblyPath

Gets the on-disk location of the assembly under test.

string AssemblyPath { get; }

Property Value

string

ConfigFilePath

Gets the full path of the configuration file name, if one is present. May be null if there is no configuration file.

string? ConfigFilePath { get; }

Property Value

string