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.
 
 
 
 

25 line
424 B

  1. #ifndef __utils_run__
  2. #define __utils_run__
  3. void hex_to_base64_test();
  4. void xor_strings_test();
  5. void hamming_test();
  6. void base64_test();
  7. void convert_string_to_hex_test();
  8. void c2b_test();
  9. namespace UTILS {
  10. void run() {
  11. hamming_test();
  12. hex_to_base64_test();
  13. convert_string_to_hex_test();
  14. xor_strings_test();
  15. base64_test();
  16. c2b_test();
  17. }
  18. }
  19. #endif // __utils_run__