私は単体テストに関してはまったくの初心者なので、これが完全に無知である場合はご容赦ください。しかし、予想される値と実際の値にまったく同じ値を指定しても、このメソッドが単体テストに合格することはありません。ブレークポイントを設定してステップ実行すると、予想される変数と実際の変数の両方が、何とかと何とかという 2 つの項目を含む文字列配列であることが確認されました。ただし、「Assert.AreEqual が失敗しました。Expected: System.String[] Actual:System.String[]」と表示されるたびに、テストは失敗します。
namespace TestProject1
{
public class Testing
{
public string[] PMDate(string lastPm)
{
if (string.IsNullOrEmpty(lastPm))
return new []{"blah", "blah"};
string[] results = lastPm.Split(new[] {" "}, StringSplitOptions.None);
if (results.Length < 2)
return new[] {"blah", "blah"};
return results;
}
}
[TestClass()]
public class UnitTest1
{
[TestMethod()]
public void PmDateTest()
{
Testing test = new Testing();
string[] expected = test.PMDate("01/01/1900");
string[] actual = test.PMDate("01/01/1900");
Assert.AreEqual(expected, actual);
}
}
}