Bari.Plugins.NUnit.Commands.Test.NUnitTestRunner.Run C# (CSharp) Method

Run() public method

public Run ( IEnumerable projects, IEnumerable buildOutputs ) : bool
projects IEnumerable
buildOutputs IEnumerable
return bool
        public bool Run(IEnumerable<TestProject> projects, IEnumerable<TargetRelativePath> buildOutputs)
        {
            return nunit.RunTests(projects.Select(project => new TargetRelativePath(project.Module.Name + ".tests", project.Name + ".dll")));
        }
NUnitTestRunner