<PackageReference Include="NUnit" Version="2.7.0" />

TestDetails

public class TestDetails
Provides details about a test
public object Fixture { get; }

The fixture that the test is a member of, if available.

public string FullName { get; }

The full name of the test.

public bool IsSuite { get; }

Indicates if the test represents a suite of tests.

public MethodInfo Method { get; }

The method that implements the test, if available.

public string Type { get; }

A string representing the type of test, e.g. "Test Case".

public TestDetails(object fixture, MethodInfo method, string fullName, string type, bool isSuite)

Creates an instance of TestDetails