singrdk/base/Libraries/UnitTest/ExceptionExpectedAttribute.cs

26 lines
645 B
C#
Raw 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 an assembly indicates that the assembly should be treated
// as a stand-alone test application.
//
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
public sealed class ExceptionExpectedAttribute : Attribute
{
public ExceptionExpectedAttribute(System.Type exceptionType) {
}
}
}