views:

123

answers:

2

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.

+3  A: 

For unit testing FSUnit exists.

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

Richard
+2  A: 

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