Regenerated doc + final submit for now

This commit is contained in:
2026-07-22 17:37:01 -04:00
parent c436639ddd
commit c0d40ef3e4
101 changed files with 869 additions and 781 deletions
@@ -4,7 +4,7 @@
- Source: `Juliet\src\UnitTest\RunUnitTests.cpp`
## AI Description
This header defines a debug-only unit test runner for the Juliet system. Its responsibility is to execute specific validation suites like memory arena and vector checks via two forward-declared functions within the UnitTest namespace, logging execution status through LogManager only when JULIET_DEBUG is enabled at compile time.
The `RunUnitTests` function in the provided C++ component is designed to execute a series of unit tests for the Juliet library. It leverages the `LogManager` and `LogTypes` classes from the Core module to log messages indicating the start and completion of the tests, providing feedback on their execution status. The function calls two specific test functions: `TestMemoryArena` and `VectorUnitTest`, which are responsible for testing memory management and vector operations within the Juliet library, respectively. This approach ensures that the library's functionality is thoroughly tested before release.
## Symbols