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

« back to all changes in this revision

Viewing changes to src/framework/Internal/CultureDetector.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:
24
24
using System;
25
25
using System.Reflection;
26
26
using System.Globalization;
27
 
using NUnit.Framework;
28
27
 
29
 
namespace NUnit.Core
 
28
namespace NUnit.Framework.Internal
30
29
{
 
30
    /// <summary>
 
31
    /// CultureDetector is a helper class used by NUnit to determine
 
32
    /// whether a test should be run based on the current culture.
 
33
    /// </summary>
31
34
        public class CultureDetector
32
35
        {
33
36
                private CultureInfo currentCulture;
44
47
                }
45
48
 
46
49
                /// <summary>
47
 
                /// Contruct a CultureHelper for a particular culture for testing.
 
50
                /// Contruct a CultureDetector for a particular culture for testing.
48
51
                /// </summary>
49
52
                /// <param name="culture">The culture to be used</param>
50
53
                public CultureDetector( string culture )