mirror of
https://github.com/D4C1-Labs/Flipper-ARF.git
synced 2026-04-14 07:15:57 +00:00
13 lines
254 B
C
13 lines
254 B
C
#pragma once
|
|
|
|
#include <furi.h>
|
|
#include <toolbox/pipe.h>
|
|
|
|
typedef struct TestRunner TestRunner;
|
|
|
|
TestRunner* test_runner_alloc(PipeSide* pipe, FuriString* args);
|
|
|
|
void test_runner_free(TestRunner* instance);
|
|
|
|
void test_runner_run(TestRunner* instance);
|