What code testing tools and suites exist for and in Erlang/OTP?

A test suite is especially useful for making sure that "improvements" to the system haven't broken something. The OTP group have released their comprehensive test system for Erlang. The test server can be used for testing your project and it includes test suites for the Erlang emulator and erlang stdlib.

The standard Erlang/OTP installation includes cover, a test coverage tool. QuickCheck is a commercial tool for automatically generating random test cases from a property written in Erlang itself. When a failing test case is detected, this test case is automatically reduced to a minimal failing case to simplify fault analysis.

Håkan Matsson released his mnesia test suite which, by virtue of Mnesia being large, is a reasonable test suite for the whole of Erlang. More.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions