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
18 lines
549 B
C#
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()
|
|
{
|
|
}
|
|
}
|
|
} |