Table of Contents

Interface ITestCaseFilter

Namespace
Xunit.Runner.Common
Assembly
xunit.v3.runner.common.dll

Represents a filter run against a test case (and the associated assembly it resides in).

public interface ITestCaseFilter

Methods

Filter(string, ITestCaseMetadata)

Determines whether the given testCase passes the filter.

bool Filter(string assemblyName, ITestCaseMetadata testCase)

Parameters

assemblyName string

The simple assembly name without file extension

testCase ITestCaseMetadata

The test case to be checked against the filter

Returns

bool