文件名称:smell-spec:受 RSpec 启发的 SML 小型测试框架
文件大小:4KB
文件格式:ZIP
更新时间:2024-07-31 18:55:12
StandardML
气味规格 气味规范是一个受启发的小型 SML 测试框架。 注意:这仅在进行过测试。 例子 写一些 sml fun fact 0 = 1 | fact n = n * fact(n- 1 ); 写一些测试 use " ./file_containing_fact_function.sml " ; val tests = [ Describe " my fact function " [ When " given 0 as argument " [ It " calculates fact of 0 " ( fn () => Assert.equal(fact 0 , 1 )) ], It " calculates fact of 3 " ( fn () => Assert.equal(fact 3 , 6 )), It " calc
【文件预览】:
smell-spec-master
----smell_spec.sml(2KB)
----assertions.sml(3KB)
----example.sml(154B)
----.gitignore(534B)
----README.md(2KB)