// Kyler Olsen // YREA SLS // Tests Header // October 2025 #ifndef SLS_TESTS_H #define SLS_TESTS_H #include typedef struct { const char *name; uint8_t success; } TestResult; typedef struct { const char *section; size_t tests; TestResult* tests; } TestsReport; #endif // SLS_TESTS_H