~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/addins/NUnit/Services/NUnitAssemblyTestSuite.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
                        }
88
88
                }
89
89
 
 
90
                public virtual void GetCustomTestRunner (out string assembly, out string type)
 
91
                {
 
92
                        assembly = type = null;
 
93
                }
 
94
 
90
95
 
91
96
                protected override void OnActiveConfigurationChanged ()
92
97
                {
386
391
                                        throw new Exception (msg);
387
392
                                }
388
393
                                System.Runtime.Remoting.RemotingServices.Marshal (localMonitor, null, typeof (IRemoteEventListener));
389
 
                                result = runner.Run (localMonitor, filter, AssemblyPath, "", new List<string> (SupportAssemblies));
 
394
 
 
395
                                string testRunnerAssembly, testRunnerType;
 
396
                                GetCustomTestRunner (out testRunnerAssembly, out testRunnerType);
 
397
 
 
398
                                result = runner.Run (localMonitor, filter, AssemblyPath, "", new List<string> (SupportAssemblies), testRunnerType, testRunnerAssembly);
390
399
                                if (testName != null)
391
400
                                        result = localMonitor.SingleTestResult;
392
401
                        } catch (Exception ex) {