~a-schlapsi/nunit-3.0/linux-makefile

« back to all changes in this revision

Viewing changes to src/framework/Api/ITestAssemblyRunner.cs

  • Committer: Andreas Schlapsi
  • Date: 2010-01-23 23:14:05 UTC
  • mfrom: (18.1.137 work)
  • Revision ID: a.schlapsi@gmx.at-20100123231405-17deqoh18nfnbq1j
Merged with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
        /// </summary>
41
41
        /// <param name="assemblyName">File name of the assembly to load</param>
42
42
        /// <returns>True if the load was successful</returns>
43
 
        bool Load(string assemblyName);
 
43
        bool Load(string assemblyName, System.Collections.IDictionary options);
44
44
 
45
 
        /// <summary>
46
 
        /// Count Test Cases using a filter
47
 
        /// </summary>
48
 
        /// <param name="filter">The filter to apply</param>
49
 
        /// <returns>The number of test cases found</returns>
50
 
        int CountTestCases(NUnit.Core.TestFilter filter);
 
45
        ///// <summary>
 
46
        ///// Count Test Cases using a filter
 
47
        ///// </summary>
 
48
        ///// <param name="filter">The filter to apply</param>
 
49
        ///// <returns>The number of test cases found</returns>
 
50
        //int CountTestCases(TestFilter filter);
51
51
 
52
52
        /// <summary>
53
53
        /// Run selected tests and return a test result. The test is run synchronously,
54
54
        /// and the listener interface is notified as it progresses.
55
55
        /// </summary>
56
 
        /// <param name="listener">Interface to receive EventListener notifications.</param>
57
 
        /// <param name="filter">The filter to apply when running the tests</param>
58
 
        NUnit.Core.TestResult Run(NUnit.Core.ITestListener listener, NUnit.Core.TestFilter filter);
 
56
        /// <param name="listener">Interface to receive ITestListener notifications.</param>
 
57
        ITestResult Run(ITestListener listener);
59
58
 
60
59
        #endregion
61
60
    }