root: macro: test: reorg/refactor unit/benchmark

This commit is contained in:
2024-07-20 22:45:33 -07:00
parent 5c47cee552
commit 0b15857414
4 changed files with 109 additions and 49 deletions

View File

@@ -113,10 +113,10 @@ std::string make_timestamp()
//! \ingroup cpp_macro
//! \details
//! Example:
//! <br>&emsp; root [0] docker_finance::macro::load("test/test.C")<br>
//! <br>&emsp; root [0] docker_finance::macro::load("test/unit.C")<br>
//!
//! Will load:
//! <br>&emsp; root/macro/test/test.C<br>
//! <br>&emsp; root/macro/test/unit.C<br>
//!
//! \note Parent directory is `root/macro`
void load(const std::string& path)
@@ -128,10 +128,10 @@ void load(const std::string& path)
//! \ingroup cpp_macro
//! \details
//! Example:
//! <br>&emsp; root [0] docker_finance::macro::load({"test/test.C", "../src/hash.hh"})<br>
//! <br>&emsp; root [0] docker_finance::macro::load({"test/unit.C", "../src/hash.hh"})<br>
//!
//! Will load:
//! <br>&emsp; root/macro/test/test.C and root/src/hash.hh<br>
//! <br>&emsp; root/macro/test/unit.C and root/src/hash.hh<br>
//!
//! \note Parent directory is `root/macro`
void load(const std::initializer_list<std::string>& paths)