NUnit.Core.TestResult.AddResult(NUnit.Core.TestResult)

Here are the examples of the csharp api NUnit.Core.TestResult.AddResult(NUnit.Core.TestResult) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : NUnitResultCollector.cs
with MIT License
from PlasticSCM

internal void SaveResults(string fileName)
        {
            TestResult all = new TestResult(new TestName());

            foreach (TestResult r in mResultList) all.AddResult(r);

            new XmlResultWriter(fileName).SaveTestResult(all);
        }