using System;
using Unity.PerformanceTesting.Data;
using UnityEngine;
namespace Unity.PerformanceTesting.Editor
{
///
/// Helper class to parse test runs into performance test runs.
///
public class TestResultXmlParser
{
///
/// Parses performance test run from test run result xml.
///
/// Path to test results xml file.
/// Performance test run data extracted from the NUnit xml results file.
public Run GetPerformanceTestRunFromXml(string resultXmlFileName)
{
return TestResultsParser.GetPerformanceTestRunDataFromXmlFile(resultXmlFileName);
}
}
}