mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
26 lines
399 B
C#
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;
|
|
}
|
|
}
|
|
}
|