Skip to content

Instantly share code, notes, and snippets.

View Lsalwestfox's full-sized avatar

Lsalwestfox

  • 12:00 (UTC -12:00)
View GitHub Profile
@Lsalwestfox
Lsalwestfox / unit_tests.c
Last active June 23, 2025 05:01
A simple unit tests framework or for assertions if make app a 1 huge runtime unit test
#ifndef TESTS_LIB
#define TESTS_LIB
#include "stdio.h"
#include "stdbool.h"
bool __impl_tmp = false;
void failedTest() {
if(__impl_tmp) printf("[FAILED]\n");