RetroShare/supportlibs/libsam3/test/test.c
sehraf 76f0678820
add fork of libsam3
add funtion to get i2p certificate crypto algo names
2021-03-16 21:15:26 +01:00

13 lines
299 B
C

#include <stddef.h>
#include "../src/ext/tinytest.h"
#include "../src/ext/tinytest_macros.h"
extern struct testcase_t b32_tests[];
struct testgroup_t test_groups[] = {{"b32/", b32_tests}, END_OF_GROUPS};
int main(int argc, const char **argv) {
return tinytest_main(argc, argv, test_groups);
}