Neuronetz_V2/unittests.h
Efe Kaan Turhan a8fbf37709 Neuronetz_Fertig
Please enter the commit message for your changes. Lines starting
2025-11-25 19:52:51 +01:00

11 lines
168 B
C

#ifndef UNITTTESTS_H
#define UNITTTESTS_H
#include <stdio.h>
typedef int (*UnitTestType)(void);
#define RUN_UNIT_TEST(fct) printf("%80s: %d\n", #fct, fct())
#endif