开发者

TestContext is null

Pretty simple test:

[TestClass]
public class MyTestClass
{
    private T开发者_如何学GoestContext _testContext;
    protected TestContext TestContext
    {
        get { return _testContext; }
        set { _testContext = value; }
    }

    [TestMethod]
    [HostType("ASP.NET")]
    [UrlToTest("http://localhost/MyPage.aspx")]
    public void TestMyPage()
    {
        Assert.IsNotNull(TestContext);
    }
}

Fails... Now I am using VS2008 Development edition. Is there any possibility to fix this? Or I need to have a Test (or Team Suite) edition?

Thanks.

P.S. Access to TestContext object is required to have access to it's RequestedPage property


I'm pretty sure that TestContext has to be a public property in order for the framework to set it for you. Have you tried making it public?

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜