vs2003:快速片段工具
我正在开发一个巨大的 vs2003 网站。是否有一个快速片段工具,我可以使用它来连接到我的开发数据库并测试我的代码的不同部分,而不是一遍又一遍地运行网站?
I am working on a HUGE vs2003 website. Is there a quick snippet tool that i could use to connect to my dev database and test out different pieces of my code instead of running website over and over again??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,仅仅因为您正在构建一个网站并不意味着您的所有代码都必须位于网站项目中。您可以创建您的网站所依赖的类库,然后可能创建一个控制台应用程序来调用该类库以进行测试。
然而,理想情况下,您应该进行单元测试而不是临时测试。您可以使用 NUnit 或各种其他测试框架创建这些单元测试。 (不可否认,使用 .NET 1.1 将限制您可以使用的测试框架的版本。)
Well, just because you're building a web site doesn't mean that all your code has to be in a web site project. You can create a class library which your web site depends on, and then maybe a console app to make calls to that class library for test purposes.
Ideally, however, you'd have unit tests instead of ad hoc testing. You could create those unit tests with NUnit or various other test frameworks. (Using .NET 1.1 will limit which versions of those test frameworks you can use, admittedly.)