Bari.Plugins.NUnit.Tools.NUnit.RunTests C# (CSharp) Method

RunTests() public method

public RunTests ( IEnumerable testAssemblies ) : bool
testAssemblies IEnumerable
return bool
        public bool RunTests(IEnumerable<TargetRelativePath> testAssemblies)
        {
            List<string> ps = testAssemblies.Select(p => (string)p).ToList();
            ps.Add("-result=test-report.xml");
            return Run(targetDir, ps.ToArray());
        }