这是我的生产代码:
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);
}
}
}
测试通过。