NUnit单元测试整理之基本语法 单元测试方法
1.TestFixtureSetUp与TestFixtureTearDown的用法
TestFixtureSetUp:在所有当前选中的标记为Test的方法运行之前运行
TestFixtureTearDown:在所有当前选中的标记为Test的方法运行后运行
Code
using System;
using System.Text;
using NUnit.Framework;
namespace NUnitTest
{
[TestFixture]
public class CaculatorTest
{
private Caculator cac;
private int a;
private int b;
///
/// 声明为TestFixtureSetUp的方法将在所有选中的TestCase调用之前调用,通常用来初始化数据库连接
///
[TestFixtureSetUp]
public void InitUtility()
{
Console.Write("Caculator Invoked!");
}
///
/// 声明为TestFixtureTearDown的方法将在所有选中的TestCase调用之后调用,通常用来销毁数据库连接
文章来源于领测软件测试网 https://www.ltesting.net/