快速检查 Smalltalk?
Smalltalk 是否有 QuickCheck 模块,尤其是 Gnu Smalltalk、Squeak 和/或 Pharo?
Is there a QuickCheck module for Smalltalk, especially for Gnu Smalltalk, Squeak, and/or Pharo?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
现在有。
There is now.
我编写了 mcandre 的替代实现:SqueakCheck。
它向 SUnit 添加了一个
TheoryTestCase
,允许编写参数化测试用例。 SqueakCheck 尝试自动确定(基于发送到参数的消息)要给出理论的对象类型,然后数据生成器的集合会制作这样的对象。I wrote an alternative implementation to mcandre's: SqueakCheck.
It adds a
TheoryTestCase
to SUnit, which permits one to write parameterised test cases. SqueakCheck attempts to automatically determine (based on messages sent to the parameter) what kind of object to give the theory, and a collection of data generators then craft such an object.