From 394c4ab8d3ce5d76e2bc782e9964482cc06085e5 Mon Sep 17 00:00:00 2001 From: Alomir Date: Fri, 10 Jan 2025 12:32:43 -0500 Subject: [PATCH] Adds docs for building and running unit tests to CONTRIBUTING.md --- CONTRIBUTING.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7806eda..2d1d609 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -15,3 +15,14 @@ make clean # list all make commands make help ``` +## Testing + +SIPNET also uses `make` to build and run its unit tests. This can be done with the following commands: +```shell +# Compile tests +make test +# Run tests +make testrun +# Clean after tests are run +make testclean +```