singrdk/base/Libraries/UnitTest/AssemblyCleanupAttribute.cs

24 lines
546 B
C#
Raw Permalink Normal View History

2008-11-17 18:29:00 -05:00
///////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Note:
//
using System;
namespace Microsoft.Singularity.UnitTest
{
// This annotation on a method indicates that the method should be invoked
// to cleanup after running tests in the assembly.
//
[AttributeUsage(AttributeTargets.Method)]
public sealed class AssemblyCleanupAttribute : Attribute
{
}
}