23 lines
419 B
C#
23 lines
419 B
C#
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Microsoft Research Singularity
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// Note:
|
|
//
|
|
|
|
using System;
|
|
|
|
namespace Microsoft.Singularity.UnitTest
|
|
{
|
|
// TODO
|
|
//
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public sealed class TestCleanupAttribute : Attribute
|
|
{
|
|
}
|
|
|
|
}
|
|
|