是否可以从 .aspx 运行一些单元测试作为冒烟测试?
在我的项目中,我们使用单元测试(MsTest)。我们在构建脚本中手动运行它们。 但对于一些我们手动部署的环境。
我们需要进行一些冒烟测试。目前,我“手动”进行了冒烟测试(登录、创建用户、创建许可证、创建产品等)。
我知道我可以从命令行或 Visual Studio 运行单元测试,但是...
您知道是否可以从 .aspx 页面运行这些 mstest(或可能是一小部分)并显示结果?
编辑:想知道 mstests 或其他东西是否能够运行测试并在 .aspx 页面中显示一些视觉内容,类似于通过的测试和失败的测试列表... 我正在考虑只运行一小部分测试 (5-6)
In my project we use UnitTests (MsTest). We run them manually and in the build script.
But for some environments where we deploy manually.
We are in the need of having some smoke tests. At the moment I made this smoke tests "manually" (Login, create an user, create a licence, create a product, etc).
I know I can run unit tests from command line or from visual studio but...
Do you know if is possible to run these mstests (or probably a small subset) from an .aspx page and show the results?
EDITED: wondering if mstests or something is able to run the tests and have something visual to show in an .aspx page similar to a list of tests passed and tests failed...
I am thinking on running only a small subset of tests (5-6)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以从命令行运行它们,那么您可以从 aspx 文件运行它们。检查 Process 类。
If you can run them from command line then you can run them from aspx file. Check Process class.