Exemple #1
0
        private Message ProcessTestSuiteCompleted(XmlNode testEvent)
        {
            var id = testEvent.Attributes["id"].Value;

            if (!m_StartedGroups.Contains(id))
            {
                return(null);
            }

            m_StartedGroups.Remove(id);
            return(TestGroupMessage.CreateGroupEnd(testEvent.Attributes["fullname"].Value));
        }
Exemple #2
0
 private Message ProcessSuiteStart(XmlNode testEvent)
 {
     m_StartedGroups.Add(testEvent.Attributes["id"].Value);
     return(TestGroupMessage.CreateGroupStart(testEvent.Attributes["fullname"].Value));
 }