Add working unit tests

This commit is contained in:
Jaakko Haakana 2025-07-26 15:19:49 +03:00
parent f609d54a14
commit 995cc7784c
106 changed files with 589 additions and 582 deletions

9
test/emul/time.cpp Normal file
View file

@ -0,0 +1,9 @@
#include <stdint.h>
unsigned long millis() {
return 0;
}
uint64_t get_timestamp(unsigned long millis) {
return 0;
}