mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
13 lines
246 B
C
13 lines
246 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);
|