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)); }
private Message ProcessSuiteStart(XmlNode testEvent) { m_StartedGroups.Add(testEvent.Attributes["id"].Value); return(TestGroupMessage.CreateGroupStart(testEvent.Attributes["fullname"].Value)); }