feat(test) first experiement with Unity test engine

This commit is contained in:
Gabor Kiss-Vamosi
2021-06-02 15:41:47 +02:00
parent 2b29249510
commit dde9ceaa53
37 changed files with 4759 additions and 5582 deletions

19
tests/lv_test_init.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef LV_TEST_INIT_H
#define LV_TEST_INIT_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdio.h>
void lv_test_init(void);
void lv_test_deinit(void);
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif /*LV_TEST_INIT_H*/