1

Possible Duplicate:
F# development and unit testing?

Are there any F# - specific agile software development tools? I'm thinking of things like a unit testing framework.

Community
  • 1
  • 1
user128807
  • 10,447
  • 17
  • 53
  • 72

2 Answers2

3

For unit testing FSUnit exists.

But as a .NET language most .NET tools will work.

Richard
  • 106,783
  • 21
  • 203
  • 265
2

For unit testing FsCheck the F# port of the Haskell framework QuickCheck is very nice. Basically it generates random tests based a specification of what the function does.

Robert
  • 6,407
  • 2
  • 34
  • 41