使用VisualStudio2005TeamSystem进行单元测试[21] 软件测试
一个私有访问器和用于 TestContext 的公共属性。它由单元测试运行器(即 VSTS Unit Test Framework)使用,以便提供关于当前测试运行的信息以及用于该运行的功能。
"
TestInitialize() 和 TestCleanup() 方法。这些方法常用于获取和释放测试所需的任何对象。
"
TestMethod(),用于每个选定的方法。
让我们仔细看一下 DepositMoneyTest(),它负责确保当前的平衡能反映原始数量与累计数量的总和。
///
///A test case for DepositMoney (float)
///
[TestMethod()]
public void DepositMoneyTest()
{
float initialBalance = 0; // TODO: Initialize to an appropriate value
BankAccount target = new BankAccount(initialBalance);
float depositAmt = 0; // TODO: Initialize to an appropriate value
target.DepositMoney(depositAmt);
文章来源于领测软件测试网 https://www.ltesting.net/