9

我为一个Person类创建了这个 C# 扩展方法:

public static class PersonExtensions {
    public static void Rename(this Person person, String newName) {
        person.Name = newName;
    }
}

我将如何对这种方法进行单元测试?我已经尝试过了,但该Rename方法不适用于PersonAccessor对象。

错误是“未找到重命名的私有访问器”

当我尝试 PersonExtensions_Accessor.Rename(somePerson, newName) 时,它说“有一些无效参数”

4

3 回答 3

13

扩展方法只是引用静态方法的不同方式的语法糖。只需调用PersonExtensions.Rename(...)您的单元测试。

于 2012-06-21T15:40:25.280 回答
5

我认为一个好的方法可以是直接在Person.

考虑到您已实现的方法,示例代码将是这样的:

using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using PersonExtension; // Don't forget about reference it

namespace UnitTest {
    [TestClass]
    public class UnitTest {
        Person person;
        [TestInitialize]
        public void Init() {
            person = new Person("Person name");
        }

        [TestMethod]
        public void TestRename() {
            Assert.AreEqual("Person name", person.Name);
            person.Rename("New name");
            Assert.AreEqual("New name", person.Name);
        }
    }
}

请记住同时引用PersonPersonExtension类,并在实用程序类中具有正确的隐藏级别,以便可以访问其方法

于 2014-03-07T00:37:01.933 回答
1

这是我的生产代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ClassLibrary1
{
   public class Person
   {
      public string Name { get; set; }
   }

   public static class PersonExtensions
   {
      public static void Rename(this Person person, String newName)
      {
         person.Name = newName;
      }
   }
}

这是生成的测试的编辑版本:

using ClassLibrary1;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;

namespace TestProject1
{


    /// <summary>
    ///This is a test class for PersonExtensionsTest and is intended
    ///to contain all PersonExtensionsTest Unit Tests
    ///</summary>
   [TestClass()]
   public class PersonExtensionsTest
   {


      private TestContext testContextInstance;

      /// <summary>
      ///Gets or sets the test context which provides
      ///information about and functionality for the current test run.
      ///</summary>
      public TestContext TestContext
      {
         get
         {
            return testContextInstance;
         }
         set
         {
            testContextInstance = value;
         }
      }

      #region Additional test attributes
  // 
  //You can use the following additional attributes as you write your tests:
  //
  //Use ClassInitialize to run code before running the first test in the class
  //[ClassInitialize()]
  //public static void MyClassInitialize(TestContext testContext)
  //{
  //}
  //
  //Use ClassCleanup to run code after all tests in a class have run
  //[ClassCleanup()]
  //public static void MyClassCleanup()
  //{
  //}
  //
  //Use TestInitialize to run code before running each test
  //[TestInitialize()]
  //public void MyTestInitialize()
  //{
  //}
  //
  //Use TestCleanup to run code after each test has run
  //[TestCleanup()]
  //public void MyTestCleanup()
  //{
  //}
  //
  #endregion


      /// <summary>
      ///A test for Rename
      ///</summary>
      [TestMethod()]
      public void RenameTest()
      {
         Person person = new Person(); // TODO: Initialize to an appropriate value
         string newName = string.Empty; // TODO: Initialize to an appropriate value
         PersonExtensions.Rename(person, newName); // this could also be written as person.Rename(newName);
         Assert.AreEqual(person.Name, string.Empty);
      }
   }
}

测试通过。

于 2012-06-21T15:39:03.560 回答