Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 890 Bytes

testing-intro.md

File metadata and controls

22 lines (17 loc) · 890 Bytes
title type description num languages previous-page next-page
Testing with MUnit
chapter
The introduction of the MUnit library
2
ru
introduction
testing-suite

MUnit is a lightweight testing library. It provides a single style for writing tests, a style that can be learned quickly.

Despite its simplicity, MUnit has useful features such as:

  • assertions to verify the behavior of the program
  • fixtures to ensure that the tests have access to all the necessary resources
  • asynchronous support, for testing concurrent and distributed applications.

MUnit produces actionable error reports, with diff and source location, to help you quickly understand failures.

Testing is essential for any software development process because it helps catch bugs early, improves code quality and facilitates collaboration.

{% include markdown.html path="_markdown/install-munit.md" %}