- Adjusted Formatting of tests

- Finished map implementation and unit tests

 TODO: Threading
This commit is contained in:
2025-07-23 12:05:02 -04:00
parent 73333b4c67
commit 65573f28e4
61 changed files with 2665 additions and 2187 deletions

View File

@@ -23,26 +23,21 @@
#include "../../../test.h"
namespace fennec
namespace fennec::test
{
namespace test
{
inline void fennec_test_math_quaternion() {
inline void fennec_test_math_quaternion() {
fennec_test_section("constructors");
fennec_test_section("constructors");
fennec_test_spacer(1);
fennec_test_spacer(1);
fennec_test_run(quat(), quat(1, 0, 0, 0));
fennec_test_run(quat(), quat(1, 0, 0, 0));
fennec_test_spacer(2);
fennec_test_spacer(2);
// TODO
}
}
// TODO
}
}