Files
Umbraco-CMS/src/Umbraco.Tests/PartialTrust/TestOnlyInFullTrustAttribute.cs
shannon@ShandemVaio 62d6db935d Integrating v5 TypeFinder. Imported a few classes from v5 regarding utility classes and partial trust
unit test helper classes. Changed calls from old TypeFinder to new TypeFinder2. Created benchmark unit
tests to test speed differences between them.
Fixes: 30946 - IOHelper with HttpContext issue
Fixes: 30945 - AppCodeFileExtensions issue with UmbracoSettings
2012-07-26 21:12:54 +06:00

18 lines
549 B
C#

using System;
namespace Umbraco.Tests.PartialTrust
{
/// <summary>
/// Specifies that the <see cref="AbstractPartialTrustFixture{T}"/> will not run the decorated test in a partial trust AppDomain
/// </summary>
[AttributeUsage(AttributeTargets.Method)]
public class TestOnlyInFullTrustAttribute : Attribute
{
/// <summary>
/// Specifies that the <see cref="AbstractPartialTrustFixture{T}"/> will not run the decorated test in a partial trust AppDomain
/// </summary>
public TestOnlyInFullTrustAttribute()
{
}
}
}