mirror of
https://github.com/Kbz-8/Pulse.git
synced 2026-01-11 15:33:34 +00:00
22 lines
333 B
C
22 lines
333 B
C
#include <unity/unity.h>
|
|
#include <Pulse.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
extern void TestBackend();
|
|
extern void TestDevice();
|
|
extern void TestBuffer();
|
|
extern void TestImage();
|
|
extern void TestPipeline();
|
|
|
|
int main(void)
|
|
{
|
|
UNITY_BEGIN();
|
|
TestBackend();
|
|
TestDevice();
|
|
TestBuffer();
|
|
TestImage();
|
|
TestPipeline();
|
|
return UNITY_END();
|
|
}
|