我的 TestInitialized 类对我的测试不可见
我正在尝试遵循圣人 Answermen 的建议:将我的类实例化移动到 TestInitialize 方法:
[TestInitialize()]
public void MyTestInitialize()
{
MessageClass target = new MessageClass();
}
. . .
[TestMethod()]
public void SetMessageTypeSubcodeTest()
...
target.SetMessageTypeSubcode(AMessageTypeSubcode); // <- here
...但我得到,“名称“目标”在当前上下文中不存在”< /em> 上面。
如何使“目标”对我的测试方法可见?
I'm trying to follow the advice of the sage Answermen re: moving my class instantiation to the TestInitialize method:
[TestInitialize()]
public void MyTestInitialize()
{
MessageClass target = new MessageClass();
}
. . .
[TestMethod()]
public void SetMessageTypeSubcodeTest()
...
target.SetMessageTypeSubcode(AMessageTypeSubcode); // <- here
...but I'm getting, "The name 'target' does not exist in the current context" above.
How can I make "target" visible to my test method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的目标对象是在本地范围内定义的。将其设置为字段而不是局部变量,以便其他类方法可以访问它。
Your target object is defined in a local scope. Make it a field instead of a local variable so other class methods can access it.