如何在测试工具中实例化 asp.net 代码隐藏类?

发布于 2024-07-23 02:51:42 字数 196 浏览 4 评论 0原文

我正在开发一个使用 asp.net WebForms 编写的网站。 我想要两个围绕一些更有趣的子例程的包装测试用例。 如何实例化来自测试项目中 .aspx 文件的类,以便我可以在 nUnit 下操作它?


编辑:我真正想做的是测试代码隐藏中的实用方法和事件方法。 我不想发布到该页面并阅读回复。 我想对方法进行单元测试,而不是页面。

I'm working on a web site written using asp.net WebForms. I'd like two wrap test cases around some of the more interesting subroutines. How can I instantiate the class that comes from the .aspx file in my test project so I can manipulate it under nUnit?


Edit: What I really want to do is test the utility methods and event methods that are in the code-behind. I don't want to post to the page and read the response. I want to unit test the Methods, not the Page.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

绝對不後悔。 2024-07-30 02:51:43

您可以像任何其他类型一样实例化它:

YourPage page = new YourPage();

现在让生命周期运行将是另一回事。

You can instantiate it just like any other type:

YourPage page = new YourPage();

Now getting the lifecycle to run will be quite another matter.

2024-07-30 02:51:42

更新 确保您已将项目设置为 ASP.NET Web 项目,而不是 ASP.NET 网站。 然后,您可以使用适当的 NUnit 属性标记页面类,并使用 NUnit 测试项目的输出 dll。

这是一篇 Microsoft 文章,解释了 ASP.NET 中的单元测试:
http://msdn.microsoft.com/en-us /library/ms404696(VS.80).aspx

UPDATE Make sure you have setup your project to be an ASP.NET web project, not an asp.net web site. You can then mark your page class with the appropriate NUnit attributes and test the output dll for your project with NUnit.

Here is a Microsoft article that explains unit testing in asp.net:
http://msdn.microsoft.com/en-us/library/ms404696(VS.80).aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文