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 ..
ctestUnit 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 binsearchAlternatively, run the file directly:
./tests/test_binsearch