stephan-tolksdorf / fparsec

A parser combinator library for F#
523 stars 45 forks source link

Use a third-party testing framework. #96

Open teo-tsirpanis opened 1 year ago

teo-tsirpanis commented 1 year ago

FParsec's test suite is currently a console app that manually runs all tests in sequence. This approach has many disadvantages, with the most important being that if a test fails these after it will not run. Besides that the test execution is not parallelized, and we are missing many useful features of third-party testing frameworks.