19 lines
329 B
C
19 lines
329 B
C
/* $OpenBSD: tests.c,v 1.3 2023/03/06 12:15:47 dtucker Exp $ */
|
|
/*
|
|
* Placed in the public domain
|
|
*/
|
|
|
|
#include "../test_helper/test_helper.h"
|
|
|
|
void kex_tests(void);
|
|
void kex_proposal_tests(void);
|
|
void kex_proposal_populate_tests(void);
|
|
|
|
void
|
|
tests(void)
|
|
{
|
|
kex_tests();
|
|
kex_proposal_tests();
|
|
kex_proposal_populate_tests();
|
|
}
|