First, install the conan package manager for your system. Then build and run the unit tests like so:
mkdir build && cd build
conan install .. && cmake ..
ctest
Unit tests are written with Boost.Test library. To run a specific test unit, say binary search tests, drop the test_
and run:
ctest --verbose -R binsearch
Alternatively, run the file directly:
./tests/test_binsearch