4、经过处理的反向关联(Sanitized Roundtrip)。上面说的反向关联有一个缺点,是如果输入的字符串为” 10″,那么有点问题了,因为整数10转换为字符串是不会转换为” 10″的,这个模式的数学证明是:f-1(f(f-1(x)))=f-1(x)

  以下示例可以看做是上一段代码的加强版。

[TestMethod]
public void SanitizedRoundTripTest()
{
string str = " 10 ";
//先把字符串转换为整数,然后把整数转换为字符串,后把字符串转换为整数
int i = Int32.Parse(str);
string intermediate = i.ToString();
int roundtripped = Int32.Parse(intermediate);
//验证结果
Assert.AreEqual(i, roundtripped);
}


  5、状态关联。这种模式很常见,是对于调用某个类的方法,会改变这个类内部的状态,而这个改变可以用其他方法来间接地验证。

  一段对列表进行简单测试的代码:

[TestMethod]
public void InsertContains()
{
string input = "some string";
List<string> list = new List<string>();
list.Add(input);
Assert.IsTrue(list.Contains(input));
list.Remove(input);
Assert.IsFalse(list.Contains(input));
}


  6、异常允许。如果需要测试异常是否在适当的时候抛出的时候,应该应用该模式。

[TestMethod,ExpectedException(typeof(IndexOutOfRangeException))]
public void ExpectedException()
{
//创建一个长度为5的数组
int[] array = new int[5];
//尝试给该数组的第六位赋值,应该抛出IndexOutOfRangeException异常
array[6] = 1;
}


  以上六种模式是单元测试中比较常见的,但并不是单元测试的全部。了解这些模式,对于平时的工作是很有帮助的。