有没有类似于Python的Doctest的Matlab工具?
在我的 Python 开发中,doctest
确实帮助我
- 减少了编写单元测试的麻烦,并将
- 使用示例与文档集成在一起。
我想知道Matlab世界里有类似的东西吗?它不必真正使用代码注释作为测试,但如果它具有这两个理想的品质,那就太好了!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这个现在已经存在了!共有三个版本:
This exists now! There are three versions out there:
还没有,但是有一些东西可以生成名为 M2HTML。
它非常有用,您可以查看该页面上的示例,看看它产生了多么美妙的结果(甚至是依赖图:))。
对于 MATLAB 中的单元测试,即使有很多解决方案,mlUnit 是对我来说最有效。
Not yet, but there is something to generate documentation called M2HTML.
It is very useful, and you can take a look at the examples at that page to see how wonderful results it's producing (even dependency graphs :) ).
For unit testing in MATLAB, even if there are many solutions, mlUnit was the most efficient to me.
MATLAB 中没有与
doctest
直接等效的东西。然而,Matlab File Exchange 上有一个很好的单元测试框架。
There is no direct equivalent to
doctest
in MATLAB.There is, however, a nice unit testing framework on the Matlab File Exchange.