You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tests.h 353B

1234567891011121314151617181920
  1. #ifndef RSPAMD_TESTS_H
  2. #define RSPAMD_TESTS_H
  3. /*
  4. * Here are described test functions for rspamd test suite
  5. */
  6. /* URL parser test */
  7. void rspamd_url_test_func ();
  8. /* Memcached library test */
  9. void rspamd_memcached_test_func ();
  10. /* Memory pools */
  11. void rspamd_mem_pool_test_func ();
  12. /* Expressions */
  13. void rspamd_expression_test_func ();
  14. #endif