~nunit-core/nunitv2/2.5

« back to all changes in this revision

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

  • Committer: Charlie Poole
  • Date: 2010-12-21 00:53:07 UTC
  • Revision ID: charlie@nunit.org-20101221005307-m1qsj959lm1x2s52
Fix line endings

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
    /// same process.
16
16
    /// </summary>
17
17
    public class InProcessTestRunnerFactory : ITestRunnerFactory
18
 
    {
19
 
        #region ITestRunnerFactory Members
20
 
 
 
18
    {
 
19
        #region ITestRunnerFactory Members
 
20
 
21
21
        /// <summary>
22
22
        /// Returns a test runner based on the settings in a TestPackage.
23
23
        /// Any setting that is "consumed" by the factory is removed, so
42
42
                default:
43
43
                    return new TestDomain();
44
44
            }
45
 
        }
46
 
 
47
 
        public virtual bool CanReuse(TestRunner runner, TestPackage package)
48
 
        {
49
 
            return false;
50
 
        }
51
 
 
52
 
        #endregion
 
45
        }
 
46
 
 
47
        public virtual bool CanReuse(TestRunner runner, TestPackage package)
 
48
        {
 
49
            return false;
 
50
        }
 
51
 
 
52
        #endregion
53
53
    }
54
54
}