ci(tests): add test framework (#1603)

This commit is contained in:
ReenigneArcher
2024-03-24 19:52:24 -04:00
committed by GitHub
parent 934f81182a
commit 89e8b9628c
43 changed files with 1519 additions and 136 deletions

11
tests/utils.h Normal file
View File

@@ -0,0 +1,11 @@
/**
* @file utils.h
* @brief Reusable functions for tests.
*/
#pragma once
#include <string>
int
setEnv(const std::string &name, const std::string &value);