mirror of
https://github.com/Waujito/youtubeUnblock.git
synced 2025-01-15 19:15:17 +00:00
18 lines
304 B
C
18 lines
304 B
C
|
#include "config.h"
|
||
|
#include "unity_fixture.h"
|
||
|
|
||
|
struct instance_config_t instance_config = {
|
||
|
.send_raw_packet = NULL,
|
||
|
.send_delayed_packet = NULL,
|
||
|
};
|
||
|
|
||
|
static void RunAllTests(void)
|
||
|
{
|
||
|
RUN_TEST_GROUP(QuicTest);
|
||
|
}
|
||
|
|
||
|
int main(int argc, const char * argv[])
|
||
|
{
|
||
|
return UnityMain(argc, argv, RunAllTests);
|
||
|
}
|