Unit Testing in Elixir: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

3 December 2023

  • curprev 14:1814:18, 3 December 2023Elixirfan talk contribs 2,471 bytes +2,471 Created page with "== Unit Testing in Elixir == Unit testing is a crucial part of the software development process. It allows developers to verify the correctness of individual units of code, ensuring that they function as expected. In Elixir, unit testing is made easy and efficient through the built-in testing framework, ExUnit. === Setting Up === Before writing unit tests in Elixir, it is necessary to set up the test environment. To do this, create a "test" directory in your Elixir pr..."