Exemplo n.º 1
0
        protected override void OnTestStarted(UnitTestTestEventArgs e)
        {
            base.OnTestStarted(e);
            var test = e.Test;

            if (!ShowOnlyFailed && !test.IsSuite)
            {
                lock (lastTestLock)
                {
                    lastTestStarted = test.FullName;
                    WriteLog(test.FullName);
                }
            }
        }
Exemplo n.º 2
0
 protected virtual void OnTestStarted(UnitTestTestEventArgs e) => TestStarted?.Invoke(this, e);
Exemplo n.º 3
0
 private void _inner_TestStarted(object sender, UnitTestTestEventArgs e) => OnTestStarted(e);
Exemplo n.º 4
0
 private void currentRunner_TestStarted(object sender, UnitTestTestEventArgs e)
 {
     OnTestStarted(e);
 }