singrdk/base/Libraries/UnitTest/TestClassAttribute.cs

21 lines
430 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
//
//
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
public sealed class TestClassAttribute : Attribute
2008-03-05 09:52:00 -05:00
{
}
}