singrdk/base/Libraries/UnitTest/TestAppAttribute.cs

26 lines
680 B
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
///////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// File: TestAppAttribute
//
// Note:
//
using System;
namespace Microsoft.Singularity.UnitTest
{
2008-11-17 18:29:00 -05:00
// This annotation on an assembly indicates that the assembly should be treated
// as a stand-alone test application, and executed as part of the indicated
// group of tests.
//
2008-03-05 09:52:00 -05:00
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
public sealed class TestAppAttribute : Attribute
{
public string TestGroup;
}
}