Running TestsΒΆ
You can run the unit tests yourself during the build process by setting the flag Suzuki-Trotter-Evolver_BUILD_TESTING to ON as follows:
git clone https://github.com/Christopher-K-Long/Suzuki-Trotter-Evolver
cd Suzuki-Trotter-Evolver
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DSuzuki-Trotter-Evolver_BUILD_TESTING=ON
cmake --build build -config Release --target install -j $(nproc)
The unit tests and the examples will be run after they are built. If you wish to run the unit tests again this can be done as follows:
cd build
make test
or by executing
cd build
ctest