mirror of
https://github.com/Kbz-8/Pulse.git
synced 2026-01-11 15:33:34 +00:00
21 lines
298 B
C
21 lines
298 B
C
#include "Common.h"
|
|
|
|
#include <unity/unity.h>
|
|
#include <Pulse.h>
|
|
|
|
void TestPipelineSetup()
|
|
{
|
|
PulseBackend backend;
|
|
SetupPulse(&backend);
|
|
PulseDevice device;
|
|
SetupDevice(backend, &device);
|
|
|
|
CleanupDevice(device);
|
|
CleanupPulse(backend);
|
|
}
|
|
|
|
void TestPipeline()
|
|
{
|
|
RUN_TEST(TestPipelineSetup);
|
|
}
|