1 /* $OpenBSD: tests.c,v 1.3 2023/03/06 12:15:47 dtucker Exp $ */ 2 /* 3 * Placed in the public domain 4 */ 5 6 #include "../test_helper/test_helper.h" 7 8 void kex_tests(void); 9 void kex_proposal_tests(void); 10 void kex_proposal_populate_tests(void); 11 12 void 13 tests(void) 14 { 15 kex_tests(); 16 kex_proposal_tests(); 17 kex_proposal_populate_tests(); 18 } 19