TestAttribute 类

定义

将此属性添加到类内 的方法会使方法可从 NUnit 测试运行器调用。 有一个名为 Description 的属性是可选的,可以提供更详细的测试说明。 此类不能被继承。

[System.AttributeUsage(System.AttributeTargets.Method, AllowMultiple=false, Inherited=true)]
public class TestAttribute : NUnit.Framework.NUnitAttribute, NUnit.Framework.Internal.IApplyToTest
type TestAttribute = class
    inherit NUnitAttribute
    interface IApplyToTest
继承
TestAttribute
属性
实现

示例

[TestFixture] 公共类 Fixture { [Test] public void MethodToTest () {} [Test (Description = “more detailed description”) ] publc void TestDescriptionMethod () {} }

构造函数

TestAttribute()

将此属性添加到类内 的方法会使方法可从 NUnit 测试运行器调用。 有一个名为 Description 的属性是可选的,可以提供更详细的测试说明。 此类不能被继承。

属性

Description

此测试的描述性文本

方法

ApplyToTest(Test)

将此属性添加到类内 的方法会使方法可从 NUnit 测试运行器调用。 有一个名为 Description 的属性是可选的,可以提供更详细的测试说明。 此类不能被继承。

适用于