選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

3ヶ月前
3ヶ月前
3ヶ月前
3ヶ月前
12345678910111213141516171819202122
  1. #!/usr/bin/env python3
  2. import os
  3. import sys
  4. SCRIPT_DIR = os.path.dirname(os.path.realpath(sys.argv[0]))
  5. sys.path.append(f"{SCRIPT_DIR}/../../cross-language-dialect/lib")
  6. from cfg_aux_test import *
  7. from cfg_test import *
  8. functions = [
  9. test_cfg_parseConfigTree,
  10. test_cfg_aux_staticSpriteName,
  11. test_cfg_aux_textureName,
  12. test_cfg_aux_tree,
  13. test_cfg_aux_treeCreateSection,
  14. test_cfg_aux_treeSetKeyValue,
  15. ]
  16. for f in functions:
  17. print(f())