From 9e2f0dccc56a82ccf61ad2db570ed9ad44c145f0 Mon Sep 17 00:00:00 2001 From: Jacob Date: Wed, 2 Oct 2024 20:03:52 -0400 Subject: [PATCH] Update README.md. --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 37033bd..6012096 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,9 @@ Makefile, a testing framework (forked from ## Instructions Set the project's name by changing the `NAME` variable in first line of the -`Makefile`. Write source files in `src/`, and headers in `src/include`. Write +`Makefile`. Write source files in `src/`, and headers in `src/include/`. Write unit tests in `test/` (with the same name as the source file they test). To build, simply run `make`, or `make test` to build and run test binaries as well. The final binary will be written to `./.out`. + +> *Instructions for writing tests coming soon.*