Haskell testing workflow

前端 未结 4 1285
萌比男神i
萌比男神i 2020-12-07 06:55

I just started a new Haskell project and wanted to set up a good testing workflow from the beginning. It seems like Haskell has a lot of excellent and unique testing tools

4条回答
  •  伪装坚强ぢ
    2020-12-07 07:22

    For testing, I rely on HUnit and QuickCheck properties and use the Haskell Test Framework to collect all unit tests and all QuickCheck properties automatically.

    Disclaimer: I'm the main developer of the Haskell Test Framework.

提交回复
热议问题