Add testing infrastructure

This commit is contained in:
Vadim Vetrov
2025-01-02 16:44:12 +03:00
parent 5c84f2e9b5
commit fa7fe5294d
13 changed files with 5190 additions and 5 deletions

17
test/quic.c Normal file
View File

@@ -0,0 +1,17 @@
#include "unity.h"
#include "unity_fixture.h"
TEST_GROUP(QuicTest);
TEST_SETUP(QuicTest)
{
}
TEST_TEAR_DOWN(QuicTest)
{
}
TEST_GROUP_RUNNER(QuicTest)
{
}