使用VisualStudio2005TeamSystem进行单元测试[21]

发表于:2010-05-13来源:作者:点击数: 标签:单元
使用VisualStudio2005TeamSystem进行 单元测试 [21] 软件测试 一个私有访问器和用于 TestContext 的公共属性。它由单元测试运行器(即 VSTS Unit Test Framework)使用,以便提供关于当前测试运行的信息以及用于该运行的功能。 " TestInitialize() 和 TestClea

  使用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

  BankAclearcase/" target="_blank" >ccount target = new BankAccount(initialBalance);

  float depositAmt = 0; // TODO: Initialize to an appropriate value

  target.DepositMoney(depositAmt);

原文转自:http://www.ltesting.net