~simone.busoli/nunitv2/1071164

« back to all changes in this revision

Viewing changes to src/ClientUtilities/util/TestDomain.cs

  • Committer: Charlie Poole
  • Date: 2012-01-10 23:03:38 UTC
  • Revision ID: charlie@nunit.org-20120110230338-ygaoy7iqi9wxtvxn
Remove special settings from config file; rewrite handling of log and  trace capture; revise TestRunner interface to remove multiple Run and BeginRun overloads for clarity

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
                #endregion
110
110
 
111
111
        #region Running Tests
112
 
        public override void BeginRun(EventListener listener, ITestFilter filter)
 
112
        public override void BeginRun(EventListener listener, ITestFilter filter, bool tracing, LoggingThreshold logLevel)
113
113
        {
114
114
            log.Info("BeginRun in AppDomain {0}", domain.FriendlyName);
115
 
            base.BeginRun(listener, filter);
 
115
            base.BeginRun(listener, filter, tracing, logLevel);
116
116
        }
117
117
        #endregion
118
118