xunit.abstractions Represents source information about a test case. Interface implement by objects that want to support serialization in xUnit.net. Called when the object should populate itself with data from the serialization info. The info to get the data from Called when the object should store its data into the serialization info. The info to store the data in Gets or sets the source file name. A null value indicates that the source file name is not known. Gets or sets the source file line. A null value indicates that the source file line is not known. Represents a provider which gives source line information for a test case. Generally consumed by an implementation of during Find operations. Returns the source information for a test case. The test case to retrieve information for. The source information, with null string and int values when the information is not available. Note: return value should never be null, only the interior data values inside. Represents a test framework. There are two pieces to test frameworks: discovery and execution. The two factory methods represent these two pieces. Test frameworks can implement an empty constructor, or they can implement one that takes if they want to be able to send diagnostic messages. Get a test discoverer. The assembly from which to discover the tests. The test discoverer. Get a test executor. The name of the assembly to run tests from. The test executor. Sets the source information provider to be used during discovery. Represents an implementation of the discovery part of a test framework. Starts the process of finding all tests in an assembly. Whether to include source file information, if possible. The message sink to report results back to. The options used by the test framework during discovery. Starts the process of finding all tests in a class. The fully qualified type name to find tests in. Whether to include source file information, if possible. The message sink to report results back to. The options used by the test framework during discovery. Serializes a test case into string form. The test case to be serialized. The serialized representation of the test case. Gets the target framework that the test assembly is linked against. Returns the display name of the test framework that this discoverer is running tests for. Represents an instance of that is to be used for test discovery purposes. This interface should not be consumed directly; instead, you should consume or . Gets an option value. The type of the value. The name of the value. The value. Sets an option value. The type of the value. The name of the value. The value to be set. Represents an instance of that is to be used for test execution purposes. Represents an implementation of the execution part of a test framework. De-serializes a test case. The string representation of the test case. The de-serialized test case. Starts the process of running all the tests in the assembly. The message sink to report results back to. The options to be used during test discovery. The options to be used during test execution. Starts the process of running selected tests in the assembly. The test cases to run. The message sink to report results back to. The options to be used during test execution. Base message interface for all messages related to test execution. It includes the list of test cases that are associated with this execution step. This is the base interface for all test messages. A test message is a message that is used to communicate the status of discovery and execution of tests. The test cases that are associated with this message. This represents failure information for the test runner. It encapsulates multiple sets of exceptions so that it can provide inner exception information, including support for . The parent indices indicate the hierarchy of the exceptions as extracted during the failure; the 0th exception is always the single parent of the tree, and will have an index of -1. The fully-qualified type name of the exceptions. The messages of the exceptions. The stack traces of the exceptions. The parent exception index for the exceptions; a -1 indicates that the exception in question has no parent. This is the base message for various types of completion that can occur during the various phases of execution process (e.g., test case, test class, test collection, and assembly). The execution time (in seconds) for this execution. The number of failing tests. The total number of tests run. The number of skipped tests. Represents an endpoint for the reception of test messages. Reports the presence of a message on the message bus. This method should never throw exceptions. The message from the message bus Return true to continue running tests, or false to stop. Base message interface for all messages related to test assemblies. The test assembly that is associated with this message. Base message interface for all messages related to test cases. Base message interface for all messages related to test methods. Base message interface for all messages related to test classes. Base message interface for all messages related to test collections. The test collection that is associated with this message. The test class that is associated with this message. The test method that is associated with this message. The test case that is associated with this message. Base message interface for all messages related to tests. The test that is associated with this message. This is the base interface for all individual test results (e.g., tests which pass, fail, or are skipped). The execution time of the test, in seconds. The captured output of the test. This message is sent during execution to indicate that the After method of a has completed executing. The fully qualified type name of the . This message is sent during execution to indicate that the After method of a is about to execute. The fully qualified type name of the . This message is sent during execution to indicate that the Before method of a has completed executing. The fully qualified type name of the . This message is sent during execution to indicate that the Before method of a is about to execute. The fully qualified type name of the . This message is sent when the test framework wants to report a diagnostic message to the end user. Gets the diagnostic message. This message indicates that the discovery process has been completed for the requested assembly. This message indicates that an error has occurred in the execution process. This message indicates that an error has occurred in test assembly cleanup. This message indicates that the execution process has been completed for the requested assembly. This message indicates that the execution process is about to start for the requested assembly. Gets the local date and time when the test assembly execution began. Gets a display string that describes the test execution environment. Gets a display string which describes the test framework and version number. This message indicates that an error has occurred during test case cleanup. This message indicates that a test case had been found during the discovery process. This message indicates that a test case has finished executing. This message indicates that a test case is about to start executing. This message indicates that an error has occurred during test class cleanup. This message indicates that an instance of a test class has just been constructed. Instance (non-static) methods of tests get a new instance of the test class for each individual test execution; static methods do not get an instance of the test class. This message indicates that an instance of a test class is about to be constructed. Instance (non-static) methods of tests get a new instance of the test class for each individual test execution; static methods do not get an instance of the test class. This message indicates that the method was just called on the test class for the test case that just finished executing. This message indicates that the method is about to be called on the test class for the test case that just finished executing. This message indicates that a test class has finished executing (meaning, all of the test cases in this test class have finished running). This message indicates that a test class is about to begin running. This message indicates that an error has occurred during test cleanup. This message indicates that an error has occurred during test collection cleanup. This message indicates that a test collection has just finished executing (meaning, all the test classes in the collection has finished). This message indicates that a test collection has is about to start executing. This message indicates that a test has failed. This message indicates that a test has finished executing. Gets the time spent executing the test, in seconds. The captured output of the test. This message indicates that an error has occurred during test method cleanup. This message indicates that a test method has finished executing (meaning, all the test cases that derived from the test method have finished). This message indicates that a test method is about to begin executing. This message indicates that a line of output was provided for a test. Gets the line of output. Indicates that a test has passed. This message indicates that a test was skipped. The reason given for skipping the test. This message indicates that a test is about to start executing. Represents information about an assembly. The primary implementation is based on runtime reflection, but may also be implemented by runner authors to provide non-reflection-based test discovery (for example, AST-based runners like CodeRush or Resharper). Gets all the custom attributes for the given assembly. The type of the attribute, in assembly-qualified form The matching attributes that decorate the assembly Gets a for the given type. The fully qualified type name. The if the type exists, or null if not. Gets all the types for the assembly. Set to true to return all types in the assembly, or false to return only public types. The types in the assembly. Gets the on-disk location of the assembly under test. If the assembly path is not known (for example, in AST-based runners), you must return null. This is used by the test framework wrappers to find the co-located unit test framework assembly (f.e., xunit.dll or xunit.execution.dll). AST-based runners will need to directly create instances of and (using the constructors that support an explicit path to the test framework DLL) rather than relying on the use of . Gets the assembly name. May return a fully qualified name for assemblies found via reflection (i.e., "mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"), or may return just assembly name only for assemblies found via source code introspection (i.e., "mscorlib"). Represents information about an attribute. The primary implementation is based on runtime reflection, but may also be implemented by runner authors to provide non-reflection-based test discovery (for example, AST-based runners like CodeRush or Resharper). Gets the arguments passed to the constructor. The constructor arguments, in order Gets all the custom attributes for the given attribute. The type of the attribute to find, in assembly-qualified form The matching attributes that decorate the attribute Gets a named-argument initialized value of the attribute. If there is no named argument for the given name on this attribute, then returns default(TValue). The type of the argument The name of the argument The argument value Represents information about a method. The primary implementation is based on runtime reflection, but may also be implemented by runner authors to provide non-reflection-based test discovery (for example, AST-based runners like CodeRush or Resharper). Gets all the custom attributes for the method that are of the given type. The type of the attribute, in assembly qualified form The matching attributes that decorate the method Gets the types of the generic arguments for generic methods. The argument types. Gets information about the parameters to the method. The method's parameters. Converts an open generic method into a closed generic method, using the provided type arguments. The type arguments to be used in the generic definition. A new that represents the closed generic method. Gets a value indicating whether the method is abstract. Gets a value indicating whether the method is a generic definition (i.e., an open generic). Gets a value indicating whether the method is public. Gets a value indicating whether the method is static. Gets the name of the method. Gets the fully qualified type name of the return type. Gets a value which represents the class that this method was reflected from (i.e., equivalent to MethodInfo.ReflectedType) Represents information about a method parameter. The primary implementation is based on runtime reflection, but may also be implemented by runner authors to provide non-reflection-based test discovery (for example, AST-based runners like CodeRush or Resharper). The name of the parameter. Gets the type of the parameter. Represents a reflection-backed implementation of . Gets the underlying for the assembly. Represents a reflection-backed implementation of . Gets the instance of the attribute, if available. Represents a reflection-backed implementation of . Gets the underlying for the method. Represents a reflection-backed implementation of . Gets the underlying for the parameter. Represents a reflection-backed implementation of . Represents information about a type. The primary implementation is based on runtime reflection, but may also be implemented by runner authors to provide non-reflection-based test discovery (for example, AST-based runners like CodeRush or Resharper). Gets all the custom attributes for the given type. The type of the attribute, in assembly qualified form The matching attributes that decorate the type Gets the generic type arguments for a generic type. The list of generic types. Gets a specific method. The name of the method. Set to true to look for the method in both public and private. The method. Gets all the methods in this type. Set to true to return all methods in the type, or false to return only public methods. Gets the assembly this type is located in. Gets the base type of the given type. Gets the interfaces implemented by the given type. Gets a value indicating whether the type is abstract. Gets a value indicating whether the type represents a generic parameter. Gets a value indicating whether the type is a generic type. Gets a value indicating whether the type is sealed. Gets a value indicating whether the type is a value type. Gets the fully qualified type name (for non-generic parameters), or the simple type name (for generic parameters). Gets the underlying object. Represents serialization support in xUnit.net. Adds a value to the serialization. Supported value types include the built-in intrinsics (string, int, long, float, double, and decimal, including nullable versions of those), any class which implements ), or arrays of any supported types. The key The value The optional type of the value Gets a value from the serialization. The key The type of the value The value, if present; null, otherwise Gets a value from the serialization. The key The value, if present; default(T), otherwise Represents a single test in the system. A test case typically contains only a single test, but may contain many if circumstances warrant it (for example, test data for a theory cannot be pre-enumerated, so the theory yields a single test case with multiple tests). Gets the display name of the test. Gets the test case this test belongs to. Represents a test assembly. Gets the assembly that this test assembly belongs to. Gets the full path of the configuration file name, if one is present. May be null if there is no configuration file. Represents a single test case in the system. This test case usually represents a single test, but in the case of dynamically generated data for data driven tests, the test case may actually return multiple results when run. Gets the display name of the test case. Gets the display text for the reason a test is being skipped; if the test is not skipped, returns null. Get or sets the source file name and line where the test is defined, if requested (and known). Gets the test method this test case belongs to. Gets the arguments that will be passed to the test method. Gets the trait values associated with this test case. If there are none, or the framework does not support traits, this should return an empty dictionary (not null). This dictionary must be treated as read-only. Gets a unique identifier for the test case. The unique identifier for a test case should be able to discriminate among test cases, even those which are varied invocations against the same test method (i.e., theories). Ideally, this identifier would remain stable until such time as the developer changes some fundamental part of the identity (assembly, class name, test name, or test data); however, the minimum stability of the identifier must at least extend across multiple discoveries of the same test in the same (non-recompiled) assembly. Represents a test class. Gets the class that this test case is attached to. Gets the test collection this test case belongs to. Represents a group of test cases. Test collections form the basis of the parallelization in xUnit.net. Test cases which are in the same test collection will not be run in parallel against sibling tests, but will run in parallel against tests in other collections. Gets the type that the test collection was defined with, if available; may be null if the test collection didn't have a definition type. Gets the display name of the test collection. Gets the test assembly this test collection belongs to. Gets the test collection ID. Test collection equality is determined by comparing IDs. Represents a test method. Gets the method associated with this test method. Gets the test class that this test method belongs to. Represents a class which can be used to provide test output. Adds a line of text to the output. The message Formats a line of text and adds it to the output. The message format The format arguments