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