Ejemplo n.º 1
0
        public void TestStarted(NUnitTestEventStartTest testNode)
        {
            var ourCase = _testConverter.GetCachedTestCase(testNode.Id);

            // Simply ignore any TestCase not found in the cache
            if (ourCase != null)
            {
                _recorder.RecordStart(ourCase);
            }
        }
Ejemplo n.º 2
0
        public void TestStarted(XmlNode testNode)
        {
            TestCase ourCase = _testConverter.GetCachedTestCase(testNode.GetAttribute("id"));

            // Simply ignore any TestCase not found in the cache
            if (ourCase != null)
            {
                _recorder.RecordStart(ourCase);
            }
        }