使用 xUnit 框架进行性能测试
我想知道是否可以基于xUnit进行性能测试?
I wonder if it is possible to run performance testing based on xUnit?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想知道是否可以基于xUnit进行性能测试?
I wonder if it is possible to run performance testing based on xUnit?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
不确定您到底要问什么,但您可以轻松编写自己的自定义属性来做到这一点。举个例子......
然后用 this 属性装饰你的单元测试。还要确保写入输出;)
Not sure what exactly you asking, but you can easily write your own custom attribute to do that. For an example..
Then decorate your Unit Test with the this attribute. Also make sure you write to an output ;)
对于 JUnit,您可以查看 JUnitPerf。
如果您使用不同的语言和不同的 xUnit,JunitPerf 设计概念(装饰正常的 JUnit 测试)和代码可能会提供如何在您的语言中执行相同操作的想法。
For JUnit, you might look at JUnitPerf.
If you're working in a different language and a different xUnit, the JunitPerf design concept (decorating normal JUnit tests) and code might give ideas of how to do the same in your language.
现在Github上有一个项目: https://github.com/Microsoft/xunit-performance
它提供了 xUnit 的扩展来编写性能测试(基准测试)。
Now there is a project on Github : https://github.com/Microsoft/xunit-performance
It provides extensions over xUnit to author performance tests (benchmark).