使用VisualStudio2005TeamSystem进行单元测试[5] 软件测试
测试运行器
VS 2005 VSTS Unit Testing Framework
GUI/Console 应用程序负责发现、执行和报告测试结果。Visual Studio 2005 Team System 将作为本文的测试运行器。
测试装置示例
请考虑以下针对 BankAccount 类的类关系图,以及一个示例测试装置 (BankAccountTests.cs)。
图 1. BankAccount 类
示例测试装置: BankAccountTests.cs
using BankAccountDemo.Business;
using Microsoft.VisualStudio.QualityTools.UnitTesting.Framework;
namespace BankAccountDemo.Business.Tests
{
[TestClass()]
public class BankAccountTest
{
[TestInitialize()]
延伸阅读
文章来源于领测软件测试网 https://www.ltesting.net/