working on images, adding unit tests for image and buffers

This commit is contained in:
2024-12-08 03:16:10 +01:00
parent f020d8bf2c
commit 52850323fd
21 changed files with 697 additions and 25 deletions

View File

@@ -5,11 +5,15 @@
extern void TestBackend();
extern void TestDevice();
extern void TestBuffer();
extern void TestImage();
int main(void)
{
UNITY_BEGIN();
TestBackend();
TestDevice();
TestBuffer();
TestImage();
return UNITY_END();
}