mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2025-02-17 05:48:33 +00:00
12 lines
245 B
C
12 lines
245 B
C
|
#pragma once
|
||
|
|
||
|
#include <furi.h>
|
||
|
|
||
|
typedef struct TestRunner TestRunner;
|
||
|
typedef struct Cli Cli;
|
||
|
|
||
|
TestRunner* test_runner_alloc(Cli* cli, FuriString* args);
|
||
|
|
||
|
void test_runner_free(TestRunner* isntance);
|
||
|
|
||
|
void test_runner_run(TestRunner* isntance);
|