您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

25 行
396 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_to_hex_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_to_hex_test();
  16. c2b_test();
  17. }
  18. }
  19. #endif // __utils_run__