23 lines
318 B
C
23 lines
318 B
C
// Kyler Olsen
|
|
// YREA SLS
|
|
// Tests Header
|
|
// October 2025
|
|
|
|
#ifndef SLS_TESTS_H
|
|
#define SLS_TESTS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
const char *name;
|
|
uint8_t success;
|
|
} TestResult;
|
|
|
|
typedef struct {
|
|
const char *section;
|
|
size_t tests;
|
|
TestResult* tests;
|
|
} TestsReport;
|
|
|
|
#endif // SLS_TESTS_H
|