一般category的使用方式如下:
[Test, Category("IntegrationTest")]
void Test1(){.....}
----------------
一個避免寫錯與免記憶負擔的技巧:
建立一個namespace,內含一些class,用來表示所有測試的category:
namespace TestCategory
{
class UnitTest : CategoryAttribute { }
class IntegrationTest : CategoryAttribute { }
}
使用方式:
[Test, TestCategory.IntegrationTest]
void Test1(){.....}