Expecto
https://github.com/haf/expecto
軽量な
F#
の
テスティングフレームワーク
NUnit
で用いられるような、
[<Test>]
のような特別な属性を必要とせず、標準的な関数を
テストフィクスチャ
として利用する。
code:fsharp
open Expecto
let tests =
test "A simple test" {
let subject = "Hello World"
Expect.equal subject "Hello World" "The strings should equal"
}