18 lines
906 B
Markdown
18 lines
906 B
Markdown
# Juliet\src\UnitTest\RunUnitTests
|
|
|
|
## Source Files
|
|
- Source: `Juliet\src\UnitTest\RunUnitTests.cpp`
|
|
|
|
## AI Description
|
|
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
|
|
|
|
### Namespace `Juliet::UnitTest`
|
|
|
|
#### Functions & Methods
|
|
- `// Forward declare the VectorUnitTest function
|
|
void VectorUnitTest()`
|
|
- `void TestMemoryArena()`
|
|
|