Cosmos/source/TestKernel/Attributes.cs
2008-02-24 16:15:24 +00:00

26 lines
399 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
namespace TestKernel {
[AttributeUsage(AttributeTargets.Method)]
public sealed class TestAttribute: Attribute {
public TestAttribute() {
}
public string TestGroup {
get;
set;
}
public string Description {
get;
set;
}
public bool IsExperimental {
get;
set;
}
}
}