test_helpers.h 388 B

1234567891011121314151617
  1. /* Copyright (c) 2014-2015, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. #ifndef TOR_TEST_HELPERS_H
  4. #define TOR_TEST_HELPERS_H
  5. const char *get_yesterday_date_str(void);
  6. /* Number of descriptors contained in test_descriptors.txt. */
  7. #define HELPER_NUMBER_OF_DESCRIPTORS 8
  8. void helper_setup_fake_routerlist(void);
  9. extern const char TEST_DESCRIPTORS[];
  10. #endif