Пример #1
0
 internal void Init(string stepDescription, int stepNumber, ResultXML xmlLog, List <_Platform> platforms)
 {
     Description    = stepDescription;
     _stepNumber    = stepNumber;
     _xmlLog        = xmlLog;
     _stepPlatforms = platforms;
 }
Пример #2
0
        private void StartLogging()
        {
            string TestMainPath = Path.GetDirectoryName(GetClientInternal().EA.LogFile);

            TestMainPath = TestMainPath.Substring(0, TestMainPath.LastIndexOf("\\"));

            lock (LoggingLocker)
            {
                if (!startTracer)
                {
                    Tracer.StartSession(GetClientInternal().EA.LogFilePath, "ExecutionLog");
                    startTracer = true;
                }
            }
            _xmlLog             = new ResultXML(TestMainPath, "IEX_Summary.xml");
            _xmlLog.LogFileName = _testName;
            _xmlLog.RegisterTestStarted();
        }