EchoLab Example App

Copy Markdown View Source

EchoLab is a tiny OTP application whose test suite exercises every Supertester feature end to end. It is intentionally small so the tests stay focused on Supertester itself rather than app logic.

What This Example Covers

The EchoLab test suite demonstrates:

Running the Tests

cd examples/echo_lab
mix deps.get
mix test

Layout

  • lib/ contains a small counter, workers, supervisors, and ETS helpers.
  • test/ contains focused tests that map directly to Supertester modules.
  • test/support/ contains the TestableCounter used by sync and harness examples.