1 /*
2   tests_tpm.h
3   Copyright (c) J.J. Green 2019
4 */
5 
6 #ifndef TESTS_TPM_H
7 #define TESTS_TPM_H
8 
9 #include <CUnit/CUnit.h>
10 
11 extern CU_TestInfo tests_tpm[];
12 
13 extern void test_tpm_create(void);
14 extern void test_tpm_push(void);
15 extern void test_tpm_manicure(void);
16 extern void test_tpm_destroy_null(void);
17 
18 #endif
19