blob: 135bfd1630659ba49855a96a11b946bd6ad5b259 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#ifndef RSPAMD_TESTS_H
#define RSPAMD_TESTS_H
/*
* Here are described test functions for rspamd test suite
*/
/* URL parser test */
void rspamd_url_test_func ();
/* Memcached library test */
void rspamd_memcached_test_func ();
/* Memory pools */
void rspamd_mem_pool_test_func ();
/* Expressions */
void rspamd_expression_test_func ();
/* Fuzzy hashes */
void rspamd_fuzzy_test_func ();
/* Stat file */
void rspamd_statfile_test_func ();
/* DNS resolving */
void rspamd_dns_test_func ();
/* Async IO */
void rspamd_async_test_func ();
/* DKIM test */
void rspamd_dkim_test_func ();
#endif
|