8.NUint的分类Categories
用Category的概念提供了标记和运行一个个单独的测试和TestFixture的简单方法。
一个Category是自己定义的一个名字。可把不同的测试方法关联到一个或多个Category,然后运行测试的时候选择自己想要运行的Category。
如,实际中有些测试只需几秒就能完成,而有些则须长时间才能完成,为了避免每次都执行长时间的测试,可使用分类来标记它们,然后运行测试指定需要运行的Category。
1[Test]
2[Category("Short")]
3public void ShortTest()
4{
5 //do some tests.
6}
7[Test, Category("Long")] //两种属性的写法就可以
8public void LondTest()
9{
10 //do some tests.
11}
2[Category("Short")]
3public void ShortTest()
4{
5 //do some tests.
6}
7[Test, Category("Long")] //两种属性的写法就可以
8public void LondTest()
9{
10 //do some tests.
11}
同样,有时需要:当没有明确选择任何Category时,希望某些Category的测试能够被运行;而当显示选择一些Category时,则只有被选择的Category才会被执行。
则需在Category属性的Explicit设置为真。
如:
[Category("Special", Explicit=true)]
在运行GUI中没有指定任何Category情况下,上述设置会使该Category不会被运行测试。默认情况下,即一个方法没有指定任何Category时,相当于没有显示指定Explicit(即Explicit=false),这类方法都会被执行。
除方法可设置Category,连TestFixture都可以设置Category,如,对于一些整个TestFixture都测试时间都很长的,就可将它设置为[Category"Long")],这样就没有必要重复标记每个测试方法了。
9.每个测试的运行都应该是互相独立的;可在任何时候,任意顺序运行每个单独的测试。
10.NUint中Per-method :Setup与Teardown
[SetUp] //用于测试环境的建立
public void MySetup() {
//do something.
}
[TearDown] //清除测试环境
public void MyTeardown() {
//do something.
}
在每个[Test]方法之前,都会调用[SetUp]方法;并在每个[Test]方法完成之后,都会调用[TearDown]方法。public void MySetup() {
//do something.
}
[TearDown] //清除测试环境
public void MyTeardown() {
//do something.
}
11.NUint中的Per-class:TestFixtureSetUp和TestFixtureTearDown
这两个方法对整个Test Class设置一些环境,及所有测试方法都执行完后做一些清理工作。
当第一个[Test]方法运行前,会调用[TestFixtureSetUp]方法,当所有[Test]方法都执行后,会调用[TestFixtureTearDown]方法。
12.测试预期的异常
//如测试是否抛出ArgumentException
[Test, ExpectedException(typeof(ArgumentException))]
public void TestForException()
{
Do.GetSomething(null);
//Shouldn's get to here;
}
[Test, ExpectedException(typeof(ArgumentException))]
public void TestForException()
{
Do.GetSomething(null);
//Shouldn's get to here;
}
若测试方法预期地抛出ArgumentException异常,测试将会通过;若没有抛出异常,则测试将会失败。
一旦异常抛出了,测试方法中剩余的代码都不会被执行。
13. 忽略指定的测试方法
[Test, Ignore("Not run this method")]
public void TestMethod()
{
//do something
}
public void TestMethod()
{
//do something
}
延伸阅读
文章来源于领测软件测试网 https://www.ltesting.net/