我正在为我的应用程序执行一些单元测试。我想知道我的测试方法的结果是什么。 Testoutcome总是给出“错误”作为输出。我已经给出了代码片段 下面。请告诉我如何获取[TestMethod]的结果 - CheckUploadPageLoaded。
public TestContext TestContext
{
get { return testContextInstance; }
set { testContextInstance = value; }
}
public TestOutcome _testoutcome { get; set; }
[TestMethod]
public void AlwaysTrue()
{
Assert.IsTrue(true, "this method always pass");
TestContext.WriteLine(TestContext.TestName);
}
[TestMethod]
public void CheckUploadPageLoaded()
{
FlickrShare.Upload upload = new FlickrShare.Upload();
Assert.IsNotNull(upload);
Console.WriteLine(_testoutcome);
}