~simone.busoli/nunitv2/1071164

« back to all changes in this revision

Viewing changes to src/PNUnit/agent/PNUnitTestRunner.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:
125
125
            TestResult result =
126
126
                FindResult(
127
127
                mPNUnitTestInfo.TestToRun,
128
 
                testDomain.Run(collector, filter) );
 
128
                testDomain.Run(collector, filter, false, LoggingThreshold.Off) );
129
129
            return result;
130
130
        }
131
131