IGLib  1.7.2
The IGLib base library EXTENDED - with other lilbraries and applications.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros
NUnit.Framework.Internal.PropertyNames Class Reference

The PropertyNames class provides static constants for the standard property ids that NUnit uses on tests. More...

Public Attributes

const string AppDomain = "_APPDOMAIN"
 The FriendlyName of the AppDomain in which the assembly is running More...
 
const string JoinType = "_JOINTYPE"
 The selected strategy for joining parameter data into test cases More...
 
const string ProcessID = "_PID"
 The process ID of the executing assembly More...
 
const string ProviderStackTrace = "_PROVIDERSTACKTRACE"
 The stack trace from any data provider that threw an exception. More...
 
const string SkipReason = "_SKIPREASON"
 The reason a test was not run More...
 
const string Author = "Author"
 The author of the tests More...
 
const string ApartmentState = "ApartmentState"
 The ApartmentState required for running the test More...
 
const string Category = "Category"
 The categories applying to a test More...
 
const string Description = "Description"
 The Description of a test More...
 
const string LevelOfParallelism = "LevelOfParallelism"
 The number of threads to be used in running tests More...
 
const string MaxTime = "MaxTime"
 The maximum time in ms, above which the test is considered to have failed More...
 
const string ParallelScope = "ParallelScope"
 The ParallelScope associated with a test More...
 
const string RepeatCount = "Repeat"
 The number of times the test should be repeated More...
 
const string RequiresThread = "RequiresThread"
 Indicates that the test should be run on a separate thread More...
 
const string SetCulture = "SetCulture"
 The culture to be set for a test More...
 
const string SetUICulture = "SetUICulture"
 The UI culture to be set for a test More...
 
const string TestOf = "TestOf"
 The type that is under test More...
 
const string Timeout = "Timeout"
 The timeout value for the test More...
 
const string IgnoreUntilDate = "IgnoreUntilDate"
 The test will be ignored until the given date More...
 

Detailed Description

The PropertyNames class provides static constants for the standard property ids that NUnit uses on tests.

Member Data Documentation

const string NUnit.Framework.Internal.PropertyNames.AppDomain = "_APPDOMAIN"

The FriendlyName of the AppDomain in which the assembly is running

Referenced by NUnit.Framework.Api.DefaultTestAssemblyBuilder.BuildTestAssembly().

const string NUnit.Framework.Internal.PropertyNames.ProcessID = "_PID"

The process ID of the executing assembly

Referenced by NUnit.Framework.Api.DefaultTestAssemblyBuilder.BuildTestAssembly().

const string NUnit.Framework.Internal.PropertyNames.ProviderStackTrace = "_PROVIDERSTACKTRACE"
const string NUnit.Framework.Internal.PropertyNames.SkipReason = "_SKIPREASON"

The reason a test was not run

Referenced by NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder.AddTestCasesToFixture(), NUnit.Framework.PlatformAttribute.ApplyToTest(), NUnit.Framework.CultureAttribute.ApplyToTest(), NUnit.Framework.ExplicitAttribute.ApplyToTest(), NUnit.Framework.IgnoreAttribute.ApplyToTest(), NUnit.Framework.CategoryAttribute.ApplyToTest(), NUnit.Framework.Api.DefaultTestAssemblyBuilder.Build(), NUnit.Framework.SetUpFixtureAttribute.BuildFrom(), NUnit.Framework.Internal.Builders.DefaultSuiteBuilder.BuildFrom(), NUnit.Framework.CombiningStrategyAttribute.BuildFrom(), NUnit.Framework.TestCaseAttribute.BuildFrom(), NUnit.Framework.Api.DefaultTestAssemblyBuilder.BuildTestAssembly(), NUnit.Framework.Attributes.TestFixtureSourceTests.CanIgnoreIndividualFixtures(), NUnit.Framework.Attributes.TestCaseSourceTests.CanIgnoreIndividualTestCases(), NUnit.Framework.Attributes.TestCaseAttributeTests.CanIgnoreIndividualTestCases(), NUnit.Framework.Attributes.TestFixtureSourceTests.CanMarkIndividualFixturesExplicit(), NUnit.Framework.Attributes.TestCaseSourceTests.CanMarkIndividualTestCasesExplicit(), NUnit.Framework.Attributes.TestCaseAttributeTests.CanMarkIndividualTestCasesExplicit(), NUnit.Framework.Internal.TestFixtureTests.CannotRunGenericFixtureWithNoArgsProvided(), NUnit.Framework.Attributes.TestFixtureSourceTests.CheckNotRunnable(), NUnit.Framework.Internal.TestSuite.CheckSetUpTearDownMethods(), NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder.CheckTestFixtureIsValid(), NUnit.Framework.Attributes.ApplyToTestTests.CultureAttributeExcludingCurrentCultureSkipsTest(), NUnit.Framework.Attributes.ApplyToTestTests.CultureAttributeIncludingOtherCultureSkipsTest(), NUnit.Framework.TestFixtureData.Explicit(), NUnit.Framework.TestCaseData.Explicit(), NUnit.Framework.Attributes.ApplyToTestTests.ExplicitAttributeDoesNotAffectNonRunnableTest(), NUnit.Framework.Attributes.ApplyToTestTests.ExplicitAttributeSetsIgnoreReason(), NUnit.Framework.Internal.TestFixtureTests.FixtureUsingIgnoreAttributeIsIgnored(), NUnit.Framework.Internal.TestFixtureTests.FixtureUsingIgnorePropertyIsIgnored(), NUnit.Framework.Internal.TestFixtureTests.FixtureUsingIgnoreReasonPropertyIsIgnored(), NUnit.Framework.Internal.Commands.SkipCommand.GetSkipReason(), NUnit.Engine.Drivers.Tests.NotRunnableFrameworkDriverTests.GetSkipReason(), NUnit.Engine.Drivers.Tests.NUnit3FrameworkDriverTests.GetSkipReason(), NUnit.Framework.Internal.Execution.CompositeWorkItem.GetSkipReason(), NUnit.Framework.Api.FrameworkControllerTests.GetSkipReason(), NUnit.Framework.TestFixtureData.Ignore(), NUnit.Framework.TestCaseData.Ignore(), NUnit.Framework.Attributes.ApplyToTestTests.IgnoreAttributeDoesNotAffectNonRunnableTest(), NUnit.Framework.Attributes.ApplyToTestTests.IgnoreAttributeSetsIgnoreReason(), NUnit.Framework.Attributes.ApplyToTestTests.IgnoreAttributeUntilSetsTheReason(), NUnit.Framework.Api.TestAssemblyRunnerTests.Load_BadFile_ReturnsNonRunnableSuite(), NUnit.Framework.Api.TestAssemblyRunnerTests.Load_FileNotFound_ReturnsNonRunnableSuite(), NUnit.Framework.Internal.Builders.NUnitTestCaseBuilder.MarkAsNotRunnable(), NUnit.Framework.TestFixtureSourceAttribute.SourceMustBeStaticError(), NUnit.Framework.TestCaseSourceAttribute.SourceMustBeStaticError(), NUnit.Framework.Internal.TestMethodSignatureTests.TestMethodHasAttributesAppliedCorrectlyEvenIfNotRunnable(), and NUnit.Framework.Internal.TestParameters.TestParameters().

const string NUnit.Framework.Internal.PropertyNames.LevelOfParallelism = "LevelOfParallelism"

The number of threads to be used in running tests

const string NUnit.Framework.Internal.PropertyNames.ParallelScope = "ParallelScope"
const string NUnit.Framework.Internal.PropertyNames.RepeatCount = "Repeat"
const string NUnit.Framework.Internal.PropertyNames.SetCulture = "SetCulture"
const string NUnit.Framework.Internal.PropertyNames.SetUICulture = "SetUICulture"
const string NUnit.Framework.Internal.PropertyNames.Timeout = "Timeout"

The timeout value for the test

Referenced by NUnit.Framework.Internal.Execution.WorkItem.Execute().


The documentation for this class was generated from the following file: