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

« back to all changes in this revision

Viewing changes to src/framework/Internal/Extensions/CombinatorialTestCaseProvider.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:
25
25
using System.Reflection;
26
26
using System.Collections;
27
27
using NUnit.Core.Extensibility;
 
28
using NUnit.Framework.Api;
 
29
using NUnit.Framework.Internal;
28
30
 
29
31
namespace NUnit.Core.Builders
30
32
{
 
33
    /// <summary>
 
34
    /// CombinatorialTestCaseProvider creates test cases from individual
 
35
    /// parameter data values, combining them using the CombiningStrategy
 
36
    /// indicated by an Attribute used on the test method.
 
37
    /// </summary>
31
38
    public class CombinatorialTestCaseProvider : ITestCaseProvider2
32
39
    {
33
40
        #region Static Members