<PackageReference Include="NUnit" Version="3.0.0-alpha" />

TestAssembly

public class TestAssembly : TestSuite
TestAssembly is a TestSuite that represents the execution of tests in a managed assembly.
using System.IO; using System.Reflection; namespace NUnit.Framework.Internal { public class TestAssembly : TestSuite { public Assembly Assembly { get; set; } public override string TestType => "Assembly"; public TestAssembly(Assembly assembly, string path) : base(path) { Assembly = assembly; base.Name = Path.GetFileName(path); } public TestAssembly(string path) : base(path) { base.Name = Path.GetFileName(path); } } }