blob: ba07799bc976bcbebd66a63a7959fce7c8455c29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _EO_SUITE_H
#define _EO_SUITE_H
#include <check.h>
void eo_test_init(TCase *tc);
void eo_test_general(TCase *tc);
void eo_test_class_errors(TCase *tc);
void eo_test_class_behaviour_errors(TCase *tc);
void eo_test_call_errors(TCase *tc);
void eo_test_value(TCase *tc);
void eo_test_threaded_calls(TCase *tc);
#endif /* _EO_SUITE_H */
|