adding pipeline unit tests

This commit is contained in:
2025-02-21 22:41:22 +01:00
parent 2de2e1f381
commit b5abfe1589
14 changed files with 497 additions and 7 deletions

View File

@@ -7,6 +7,7 @@ extern void TestBackend();
extern void TestDevice();
extern void TestBuffer();
extern void TestImage();
extern void TestPipeline();
int main(void)
{
@@ -15,5 +16,6 @@ int main(void)
TestDevice();
TestBuffer();
TestImage();
TestPipeline();
return UNITY_END();
}