Bari.Plugins.Gallio.Tools.Gallio.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("/report-type:Xml");
            ps.Add("/report-directory:.");
            ps.Add("/report-formatter-property:AttachmentContentDisposition=Absent");
            ps.Add("/report-name-format:test-report");
            return Run(targetDir, ps.ToArray());
        }