singrdk/base/Libraries/UnitTest/TestCleanupAttribute.cs

23 lines
419 B
C#
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
///////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
2008-11-17 18:29:00 -05:00
// Note:
2008-03-05 09:52:00 -05:00
//
using System;
2008-11-17 18:29:00 -05:00
namespace Microsoft.Singularity.UnitTest
2008-03-05 09:52:00 -05:00
{
2008-11-17 18:29:00 -05:00
// TODO
//
[AttributeUsage(AttributeTargets.Method)]
public sealed class TestCleanupAttribute : Attribute
2008-03-05 09:52:00 -05:00
{
}
2008-11-17 18:29:00 -05:00
2008-03-05 09:52:00 -05:00
}
2008-11-17 18:29:00 -05:00