Added a test of Init to the tests.

This commit is contained in:
John Safranek
2011-12-14 09:54:40 -08:00
parent 02ec42c79e
commit 08bd1c94bf

View File

@@ -1 +1,13 @@
/* api.c API unit tests */
#include <cyassl/ssl.h>
// 0 on success, otherwise fail
int test_CyaSSL_Init(void)
{
int result = CyaSSL_Init();
if (result) printf("test_CyaSSL_Init(): failed\n");
return (result);
}